-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
91 lines (91 loc) · 2.46 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
{
"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 --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx --fix --ignore-path .gitignore .",
"format": "prettier --cache --write --ignore-unknown .",
"postinstall": "simple-git-hooks"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"./dist"
],
"dependencies": {
"@antv/g6": "4.8.24",
"@gkd-kit/api": "0.6.0",
"@gkd-kit/selector": "0.4.2",
"@gkd-kit/wasm_matches": "0.0.1",
"@tsconfig/node20": "20.1.4",
"@types/file-saver": "2.0.7",
"@types/fs-extra": "11.0.4",
"@types/node": "22.7.9",
"@vitejs/plugin-legacy": "6.0.0",
"@vitejs/plugin-vue": "5.2.1",
"@vitejs/plugin-vue-jsx": "4.1.1",
"@vue/eslint-config-prettier": "10.1.0",
"@vue/eslint-config-typescript": "14.1.4",
"@vue/tsconfig": "0.7.0",
"@vueuse/components": "12.0.0",
"@vueuse/core": "12.0.0",
"browser-fs-access": "0.35.0",
"compressorjs": "1.2.1",
"cross-env": "7.0.3",
"dayjs": "1.11.13",
"eslint": "9.17.0",
"eslint-define-config": "2.1.0",
"eslint-plugin-unused-imports": "4.1.4",
"eslint-plugin-vue": "9.32.0",
"file-saver": "2.0.5",
"json5": "2.2.3",
"jszip": "3.10.1",
"lint-staged": "15.2.11",
"localforage": "1.10.0",
"naive-ui": "2.40.3",
"normalize.css": "8.0.1",
"p-limit": "6.1.0",
"pinia": "2.3.0",
"prettier": "3.4.2",
"sass": "1.83.0",
"simple-git": "3.27.0",
"simple-git-hooks": "2.11.1",
"tsx": "4.19.2",
"typescript": "5.7.2",
"universal-base64url": "1.1.0",
"unocss": "0.65.1",
"unplugin-auto-import": "0.19.0",
"unplugin-data": "0.1.1",
"unplugin-vue-components": "0.27.5",
"user-attachments": "1.1.2",
"vite": "6.0.3",
"vite-plugin-monkey": "5.0.0",
"vue": "3.5.13",
"vue-router": "4.5.0"
},
"volta": {
"node": "22.10.0",
"pnpm": "9.15.0"
},
"packageManager": "pnpm@9.15.0",
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx}": [
"prettier --cache --write",
"eslint --cache --fix"
],
"*.{json,yml,html}": [
"prettier --cache --write"
]
}
}