-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.4 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
{
"name": "material-me",
"version": "0.1.0-alpha.1",
"description": "Material-Me is a front-end Web Components library designed with reference to Material You.",
"main": "./dist/main.js",
"type": "module",
"exports": {
".": "./dist/main.js",
"./*": "./dist/*.js",
"./components": "./dist/components/index.js",
"./components/*": "./dist/components/*.js",
"./utils/*": "./dist/utils/*.js"
},
"scripts": {
"build": "node dev/scripts/script.mjs build",
"dev": "node dev/scripts/script.mjs server --no-min-bundle",
"prepare": "git config set core.autocrlf false && git config set core.eol lf && husky",
"script": "node dev/scripts/script.mjs",
"serve": "node dev/scripts/script.mjs server",
"test": "web-test-runner",
"test:coverage": "web-test-runner --coverage",
"test:manual": "web-test-runner --manual",
"test:watch": "web-test-runner --watch",
"test:setup": "playwright install",
"watch": "node dev/scripts/script.mjs watch",
"watch:dev": "node dev/scripts/script.mjs watch --no-min-bundle"
},
"author": {
"name": "lingbopro",
"url": "https://github.com/lingbopro"
},
"repository": "lingbopro/material-me",
"homepage": "https://github.com/lingbopro/material-me",
"license": "MIT",
"keywords": [
"material-me",
"material you",
"material design",
"web components"
],
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@esm-bundle/chai": "4.3.4-fix.0",
"@lit/reactive-element": "^2.0.4",
"@open-wc/semantic-dom-diff": "^0.20.1",
"@open-wc/testing": "^4.0.0",
"@open-wc/testing-helpers": "^3.0.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@types/chai-dom": "^1.11.3",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.7",
"@types/sinon-chai": "^4.0.0",
"@web/dev-server": "^0.4.6",
"@web/dev-server-esbuild": "^1.0.3",
"@web/test-runner": "^0.19.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"axe-core": "^4.10.2",
"chai-a11y-axe": "^1.5.0",
"husky": "^9.1.7",
"lit": "^3.2.1",
"lit-element": "^4.1.1",
"lit-html": "^3.2.1",
"playwright": "^1.49.1",
"prettier": "^3.4.2",
"rollup": "^4.27.4",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
}
}