-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.29 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
{
"name": "@preignition/vite-lit-starter",
"description": "starter kit for lit-element and vite",
"repository": "https://github.com/preignition/vite-lit-starter",
"homepage": "https://vite-lit-starter.netlify.app/",
"version": "0.1.0",
"type": "module",
"files": [
"dist"
],
"authors": [
"christophe.geiser <[email protected]>"
],
"keywords": [
"lit",
"vitejs",
"web-components"
],
"license": "MIT",
"main": "index.js",
"module": "index.js",
"scripts": {
"start": "vite",
"dev": "vite",
"copy-to-public": "cp -f package.json public/package.json && cp -f README.md public/README.md && mkdir -p public/docs && cp -rf docs/* public/docs ",
"build": "npm run analyze && npm run copy-to-public && vite build",
"preview": "vite preview",
"test": "wtr",
"analyze-json": "cem analyze",
"analyze-md": "node custom-elements-to-md.mjs",
"analyze": "npm run analyze-md && npm run analyze-json && npm run copy-to-public",
"lint": "eslint 'src/**/*.js'",
"format": "prettier \"src/**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --write",
"prepublishOnly": "npm run analyze",
"install": "npm run build"
},
"dependencies": {
"lit": "^2.2.1"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.5.7",
"@custom-elements-manifest/to-markdown": "^0.1.0",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@lit/reactive-element": "^1.3.1",
"@material/mwc-base": "^0.25.3",
"@material/mwc-ripple": "^0.25.3",
"@material/mwc-tab": "^0.25.3",
"@material/mwc-tab-bar": "^0.25.3",
"@open-wc/semantic-dom-diff": "^0.19.5",
"@open-wc/testing": "^3.1.2",
"@open-wc/testing-helpers": "^2.1.2",
"@open-wc/testing-karma": "^4.0.9",
"@preignition/preignition-demo": "^0.5.0",
"@vanillawc/wc-markdown": "^1.6.11",
"@web/dev-server-legacy": "^0.1.7",
"@web/test-runner": "^0.13.27",
"@web/test-runner-commands": "^0.6.1",
"@web/test-runner-playwright": "^0.8.8",
"api-viewer-element": "^1.0.0-pre.3",
"axe-core": "^4.4.1",
"chai-a11y-axe": "^1.4.0",
"eslint": "^8.12.0",
"lit-element": "^3.2.0",
"lit-html": "^2.2.1",
"prettier": "^2.6.1",
"router-slot": "^1.5.4",
"vite": "^2.8.6"
},
"customElements": "docs/custom-elements.json"
}