-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 3.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "himig",
"version": "1.5.1",
"description": "MatteuSan's personal design system for building user interfaces. ",
"main": "packages/himig/_index.scss",
"files": [
"packages/**/*"
],
"repository": "https://github.com/MatteuSan/himig",
"author": "Matteu <matteugt@gmail.com>",
"license": "MIT",
"scripts": {
"build:lit": "yarn lit:build && yarn lit:compile",
"lit:css": "yarn lit:scss && tsx scripts/scss-to-lit.ts",
"lit:scss": "yarn && sass packages/himig-components:packages/himig-components --style=compressed --pkg-importer=node --load-path=node_modules --no-source-map",
"lit:ts": "tsc --pretty --project \"./config/tsconfig.lit.json\"",
"lit:build": "yarn lit:scss && yarn lit:css && yarn lit:ts",
"lit:compile": "rollup -c",
"pack:dist": "npm pack --pack-destination=\"./dist\"",
"pack:root": "npm pack --pack-destination=\"./\"",
"pub:core:patch": "cd packages/himig/pintig && npm version patch --force && npm publish",
"pub:main:patch": "cd packages/himig && npm version patch --force && npm publish",
"pub:core:minor": "cd packages/himig/pintig && npm version minor --force && npm publish",
"pub:main:minor": "cd packages/himig && npm version minor --force && npm publish",
"pub:core:major": "cd packages/himig/pintig && npm version major --force && npm publish",
"pub:main:major": "cd packages/himig && npm version major --force && npm publish",
"pub:patch": "npm version patch --force && yarn pub:core:patch && yarn pub:main:patch",
"pub:minor": "npm version minor --force && yarn pub:core:minor && yarn pub:main:minor",
"pub:major": "npm version major --force && yarn pub:core:major && yarn pub:main:major",
"run:docs": "cd documentation && yarn dev",
"test:html": "yarn && sass tests/sass/with-html.test.scss:tests/sass/with-html.test.css --pkg-importer=node --load-path=node_modules --no-source-map --style=compressed",
"test:sass": "yarn && jest --config=\"jest.config.ts\""
},
"devDependencies": {
"@matteusan/himig": "file:./packages/himig",
"@matteusan/himig-components": "file:./packages/himig-components",
"@matteusan/pintig": "file:./packages/himig/pintig",
"@matteusan/sentro": "^1.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@web/rollup-plugin-copy": "^0.5.1",
"@web/rollup-plugin-html": "^2.3.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"glob": "^10.3.12",
"gulp": "^4.0.2",
"gulp-cli": "^3.0.0",
"gulp-sass": "^5.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lit": "^2.7.4 || ^3.0.0",
"postcss-scss": "^4.0.9",
"rollup": "^4.17.2",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-summary": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.72.0",
"sass-true": "^8.0.0",
"ts-jest": "^29.1.0",
"ts-lit-plugin": "^2.0.2",
"ts-node": "^10.9.1",
"tsx": "^4.8.1",
"typescript": "^5.4.5"
}
}