-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.63 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "lit-starter-design-system-maximal",
"version": "1.0.0",
"description": "A Maximal Lit Design System starter kit",
"type": "module",
"scripts": {
"dev": "npm run build:demo --watch & npm run serve",
"serve": "wds --node-resolve -w",
"build:postcss": "wireit",
"build:ts": "wireit",
"build:demo": "wireit",
"build:demo:watch": "npm run build:demo -- --watch",
"test": "wireit",
"clean": "rm -rf ./.wireit && rm .tsbuildinfo"
},
"wireit": {
"build:postcss": {
"command": "zx ./scripts/build-postcss.mjs",
"files": [
"./src/components/**/*.pcss"
],
"output": [
"./src/components/**/*.css.ts"
]
},
"build:ts": {
"command": "tsc --build --pretty",
"clean": "if-file-deleted",
"dependencies": [
"build:postcss"
],
"files": [
"./src/**/*.ts",
"tsconfig.json",
".tsbuildinfo"
],
"output": [
"./components/**"
]
},
"build:demo": {
"command": "cem analyze --litelement --globs src/components/**/*.ts src/components/*/lib/**/*.ts",
"dependencies": [
"build:ts"
],
"files": [
"src/components/components/**/*.js",
"src/components/*/lib/**/*.js"
],
"output": [
"./custom-elements.json"
]
},
"test": {
"command": "wtr",
"files": [
"components/**/*"
],
"dependencies": [
"build:ts"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/lit/lit-starter-element-maximal.git"
},
"keywords": [
"web-components",
"lit-element",
"javascript",
"lit"
],
"author": "Google LLC",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/lit/lit-starter-element-maximal/issues"
},
"homepage": "https://github.com/lit/lit-starter-element-maximal#readme",
"dependencies": {
"lit": "^2.2.6",
"open-props": "^1.4.14"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.3",
"@open-wc/testing": "^3.1.6",
"@web/dev-server": "^0.1.32",
"@web/test-runner": "^0.13.31",
"@web/test-runner-playwright": "^0.8.9",
"api-viewer-element": "^1.0.0-pre.3",
"autoprefixer": "^10.4.10",
"dark-mode-toggle": "^0.10.0",
"fast-glob": "^3.2.11",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-import": "^15.0.0",
"postcss-jit-props": "^1.0.7",
"postcss-preset-env": "^7.8.1",
"sass": "^1.53.0",
"typescript": "^4.3.5",
"wireit": "^0.7.1",
"zx": "^7.0.8"
}
}