-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
118 lines (118 loc) · 3.91 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "lit-starter-kit",
"version": "0.0.0",
"description": "A starter kit for creating a Lit-based web component library.",
"main": "index.js",
"type": "module",
"scripts": {
"analyze": "cem analyze",
"analyze:dev": "cem analyze --watch",
"clean": "git clean -fqdx",
"dev": "concurrently -k -r \"npm run analyze:dev\" \"npm run build:watch\" \"npm run storybook\"",
"test": "web-test-runner --group default",
"build": "npm run analyze && npm run build:cdn",
"build:cdn": "tsc && rollup -c rollup.config.js",
"build:watch": "concurrently -k -r \"tsc --watch\" \"rollup -c rollup.config.js --watch\"",
"new": "plop",
"deploy": "npm run build && npm publish",
"format": "npm run format:eslint && npm run format:prettier",
"format:eslint": "npx eslint --fix",
"format:prettier": "npx prettier . --write",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "npx eslint",
"lint:prettier": "npx prettier . --check",
"prepare": "husky && npx playwright install-deps",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"author": "",
"license": "MIT",
"dependencies": {
"lit": "^3.2.1"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.3",
"@eslint/js": "^9.16.0",
"@eslint/json": "^0.8.0",
"@eslint/markdown": "^6.2.1",
"@open-wc/testing": "^4.0.0",
"@playwright/test": "^1.46.1",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@storybook/addon-a11y": "^8.4.6",
"@storybook/addon-actions": "^8.1.11",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/blocks": "^8.1.11",
"@storybook/test": "^8.1.11",
"@storybook/web-components": "^8.1.11",
"@storybook/web-components-vite": "^8.1.11",
"@types/mocha": "^10.0.2",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.19.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"cem-plugin-custom-jsdoc-tags": "^1.1.2",
"cem-plugin-expanded-types": "^1.3.3",
"code-bubble": "^1.2.0",
"concurrently": "^9.1.0",
"custom-element-eslint-rule-generator": "^1.0.1",
"custom-element-jet-brains-integration": "^1.6.2",
"custom-element-jsx-integration": "^1.5.3",
"custom-element-lazy-loader": "^1.3.1",
"custom-element-react-wrappers": "^1.6.8",
"custom-element-solidjs-integration": "^1.8.2",
"custom-element-svelte-integration": "^1.1.2",
"custom-element-vs-code-integration": "^1.4.1",
"custom-element-vuejs-integration": "^1.3.3",
"custom-elements-manifest-deprecator": "^1.1.1",
"custom-elements-manifest-inheritance": "^1.1.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-lit-a11y": "^1.1.0-next.1",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-storybook": "^0.11.1",
"glob": "^11.0.0",
"globals": "^15.13.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"plop": "^4.0.1",
"prettier": "^3.3.2",
"rollup": "^4.28.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-summary": "^3.0.0",
"storybook": "^8.1.11",
"typescript": "^5.5.3",
"typescript-eslint": "^8.17.0",
"wc-dox": "^1.2.0",
"wc-storybook-helpers": "^2.0.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.format:prettier": "prettier --write"
},
"files": [
"cdn",
"eslint",
"dist",
"react",
"types",
"index.d.ts",
"index.js",
"package.json",
"custom-elements.json",
"vscode.css-custom-data.json",
"vscode.html-custom-data.json",
"web-types.json"
],
"keywords": [
"web-components",
"custom-elements",
"lit-element",
"typescript",
"lit"
]
}