-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.95 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
{
"name": "glaber.ui",
"private": true,
"version": "0.0.1",
"type": "module",
"files": [
"dist/*",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "tsc --project tsconfig.prod.json && vite build",
"build:forDocs": "npm run analyze && tsc --project tsconfig.prod.json && FOR_DOCS=true vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"localize": "npm run localize:extract && npm run localize:build",
"localize:extract": "lit-localize extract",
"localize:build": "lit-localize build",
"analyze": "cem analyze",
"docs": "npm run build:forDocs && docsify serve docs",
"create": "plop --plopfile scripts/plop/plopfile.js",
"make:icons": "node scripts/make-icons.js --outdir public"
},
"dependencies": {
"@lit/localize": "^0.11.4",
"@shoelace-style/shoelace": "^2.4.0",
"lit": "^2.7.4"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.8.1",
"@lit/localize-tools": "^0.6.9",
"@open-wc/eslint-config": "^10.0.0",
"@open-wc/testing-helpers": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vitest/coverage-c8": "^0.31.0",
"bootstrap-icons": "^1.10.5",
"docsify-cli": "^4.4.4",
"eslint": "^8.40.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-lit": "^1.8.3",
"eslint-plugin-lit-a11y": "^2.4.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"front-matter": "^4.0.2",
"glob": "^10.2.2",
"happy-dom": "^9.10.9",
"husky": "^8.0.3",
"plop": "^3.1.2",
"recursive-copy": "^2.0.14",
"rollup-plugin-copy": "^3.4.0",
"typescript": "^5.0.2",
"unzipper": "^0.10.14",
"vite": "^4.3.5",
"vite-plugin-static-copy": "^0.14.0",
"vitest": "^0.31.0"
}
}