-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 939 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 939 Bytes
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
{
"name": "material-design-3",
"version": "1.0.0",
"main": "./dist/lit-app.umd.js",
"module": "./dist/lit-app.es.js",
"exports": {
".": {
"import": "./dist/lit-app.es.js",
"require": "./dist/lit-app.umd.js"
}
},
"license": "MIT",
"scripts": {
"lint": "eslint",
"format": "prettier --write \"src/**/*.ts\"",
"push": "func() { git add --all && git commit -m \"$1\" && git push; }; func",
"dev": "vite",
"build": "tsc && vite build",
"prepare": "husky install"
},
"dependencies": {
"haunted": "^5.0.0",
"lit": "^2.0.0"
},
"devDependencies": {
"@types/node": "^16.10.2",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.7.1",
"typescript": "^4.8.3",
"vite": "^2.6.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}