-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.98 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.98 KB
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
{
"name": "material",
"version": "2.8.2",
"publishConfig": {
"access": "public"
},
"description": "Material web components",
"keywords": [
"material",
"material design",
"design system",
"components",
"web components",
"lit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/material-esm/material.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/material-esm/material/issues"
},
"homepage": "https://github.com/material-esm/material#readme",
"scripts": {
"start": "npx -y serve",
"build": "wireit",
"build:ts": "wireit",
"build:css-to-ts": "wireit",
"build:sass": "wireit",
"test": "wireit",
"build:catalog": "wireit",
"build:scripts": "wireit",
"update-docs": "wireit",
"update-size": "wireit"
},
"type": "module",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"**/*.scss",
"**/*.css",
"**/*.css.map",
"!web-test-runner.config.js",
"!commitlint.config.js",
"!**/test/**",
"!**/*_test.*",
"!.wireit/**",
"!catalog/",
"!scripts/",
"!**/testing/**",
"testing/harness.{js,js.map,d.ts}",
"testing/transform-pseudo-classes.{js,js.map,d.ts}"
],
"workspaces": [
"catalog"
],
"dependencies": {
"lit": "^3.3.1"
},
"devDependencies": {
"@lit-labs/analyzer": "^0.9.2",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/jasmine": "^4.0.3",
"@web/test-runner": "^0.15.0",
"@web/test-runner-playwright": "^0.9.0",
"jasmine": "^4.5.0",
"prettier": "^3.6.2",
"rollup": "^2.79.1",
"sass": "^1.52.3",
"sass-true": "^6.1.0",
"typescript": "5.1.6",
"web-test-runner-jasmine": "^0.0.2",
"wireit": "^0.13.0"
},
"prettier": {
"tabWidth": 2,
"singleQuote": true,
"printWidth": 120,
"semi": false,
"trailingComma": "all",
"bracketSameLine": true
}
}