-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 KB
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
{
"name": "wc-github-corners",
"type": "module",
"version": "0.1.6",
"packageManager": "pnpm@8.15.1",
"repository": {
"type": "git",
"url": "https://github.com/YunYouJun/wc-github-corners"
},
"keywords": [
"github",
"corners",
"webcomponents",
"lit"
],
"exports": {
".": "./dist/index.es.js"
},
"main": "dist/index.es.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"analyze": "custom-elements-manifest analyze --globs 'src/index.ts' --outdir dist",
"dev": "vite",
"build": "tsc && vite build && npm run copy:demo && npm run docs:gen",
"copy:demo": "cp demo/* dist/",
"preview": "vite preview",
"docs:gen": "npm run analyze && tsx scripts/gen-docs.ts",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp --commit --push --tag",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"lit": "^3.1.2"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.43.1",
"@custom-elements-manifest/analyzer": "^0.9.0",
"@custom-elements-manifest/to-markdown": "^0.1.0",
"@types/node": "^20.11.17",
"@yunyoujun/utils": "^0.3.5",
"bumpp": "^9.3.0",
"eslint": "^8.56.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vite": "^5.1.1"
},
"customElements": "dist/custom-elements.json"
}