-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.81 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.81 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
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
{
"name": "@gkd-kit/inspect",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:mirror": "cross-env MIRROR=ON vite build",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint --cache --fix .",
"format": "prettier --cache --write --ignore-unknown .",
"postinstall": "simple-git-hooks",
"postpublish": "curl -X PUT https://registry-direct.npmmirror.com/@gkd-kit/inspect/sync"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/gkd-kit/inspect"
},
"files": [
"./dist"
],
"dependencies": {
"@antv/g6": "5.0.51",
"@eslint/js": "10.0.1",
"@gkd-kit/api": "0.8.0",
"@gkd-kit/selector": "0.5.23",
"@gkd-kit/wasm_matches": "0.0.1",
"@tsconfig/node20": "20.1.9",
"@types/file-saver": "2.0.7",
"@types/fs-extra": "11.0.4",
"@types/lodash-es": "4.17.12",
"@types/node": "25.3.2",
"@vitejs/plugin-legacy": "7.2.1",
"@vitejs/plugin-vue": "6.0.4",
"@vitejs/plugin-vue-jsx": "5.1.4",
"@vue/eslint-config-prettier": "10.2.0",
"@vue/eslint-config-typescript": "14.7.0",
"@vue/tsconfig": "0.8.1",
"@vueuse/components": "14.2.1",
"@vueuse/core": "14.2.1",
"browser-fs-access": "0.38.0",
"compressorjs": "1.2.1",
"cross-env": "10.1.0",
"dayjs": "1.11.19",
"eslint": "10.0.2",
"eslint-config-prettier": "10.1.8",
"eslint-define-config": "2.1.0",
"eslint-plugin-unused-imports": "4.4.1",
"eslint-plugin-vue": "10.8.0",
"file-saver": "2.0.5",
"globals": "17.3.0",
"json5": "2.2.3",
"jszip": "3.10.1",
"lint-staged": "16.2.7",
"localforage": "1.10.0",
"lodash-es": "4.17.23",
"naive-ui": "2.43.2",
"normalize.css": "8.0.1",
"p-limit": "7.3.0",
"pkg-exports": "0.2.0",
"prettier": "3.8.1",
"sass": "1.97.3",
"simple-git": "3.32.3",
"simple-git-hooks": "2.13.1",
"svgo": "4.0.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"universal-base64url": "1.1.0",
"unocss": "66.6.2",
"unplugin-auto-import": "21.0.0",
"unplugin-data": "0.1.1",
"unplugin-vue-components": "31.0.0",
"update-browserslist-db": "1.2.3",
"user-attachments": "2.0.2",
"vite": "7.3.1",
"vite-plugin-monkey": "7.1.9",
"vue": "3.5.29",
"vue-router": "5.0.3"
},
"volta": {
"node": "24.14.0"
},
"packageManager": "pnpm@10.30.3",
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx}": [
"eslint --cache --fix",
"prettier --cache --write"
],
"*.{json,yml,html}": [
"prettier --cache --write"
]
}
}