-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.94 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 2.94 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
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@gkd-kit/inspect",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"prebuild:mirror": "node ./scripts/updateVersion.ts",
"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.1.1",
"@eslint/js": "10.0.1",
"@gkd-kit/api": "0.9.3",
"@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.9.1",
"@vitejs/plugin-legacy": "8.0.2",
"@vitejs/plugin-vue": "6.0.7",
"@vitejs/plugin-vue-jsx": "5.1.5",
"@vueuse/components": "14.3.0",
"@vueuse/core": "14.3.0",
"browser-fs-access": "0.38.0",
"compressorjs": "1.3.0",
"cross-env": "10.1.0",
"dayjs": "1.11.20",
"eslint": "10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-unused-imports": "4.4.1",
"eslint-plugin-vue": "10.9.1",
"file-saver": "2.0.5",
"globals": "17.6.0",
"json5": "2.2.3",
"jszip": "3.10.1",
"lint-staged": "17.0.5",
"localforage": "1.10.0",
"lodash-es": "4.18.1",
"naive-ui": "2.44.1",
"normalize.css": "8.0.1",
"p-limit": "7.3.0",
"pkg-exports": "0.2.0",
"prettier": "3.8.3",
"sass": "1.99.0",
"simple-git": "3.36.0",
"simple-git-hooks": "2.13.1",
"svgo": "4.0.1",
"typescript": "6.0.3",
"typescript-eslint": "8.59.4",
"universal-base64url": "1.1.0",
"unocss": "66.6.8",
"unplugin-auto-import": "21.0.0",
"unplugin-data": "0.1.1",
"unplugin-vue-components": "32.1.0",
"update-browserslist-db": "1.2.3",
"user-attachments": "2.0.2",
"vite": "8.0.13",
"vite-plugin-monkey": "8.0.5",
"vue": "3.5.34",
"vue-router": "5.0.7"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,vue}": [
"eslint --fix"
],
"**/*.{scss,json,md}": [
"prettier --write"
]
},
"volta": {
"node": "24.15.0",
"pnpm": "11.1.3"
},
"engineStrict": true,
"engines": {
"node": ">=24",
"pnpm": ">=11"
},
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"version": "11.1.3",
"onFail": "error"
}
}
}