-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
158 lines (158 loc) · 3.97 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "vite-plugin-inspect",
"type": "module",
"version": "10.0.6",
"packageManager": "[email protected]",
"description": "Inspect the intermediate state of Vite plugins",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/vite-plugin-inspect#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/vite-plugin-inspect.git"
},
"bugs": {
"url": "https://github.com/antfu/vite-plugin-inspect/issues"
},
"keywords": [
"vite-plugin"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./nuxt": {
"import": {
"types": "./dist/nuxt.d.mts",
"default": "./dist/nuxt.mjs"
},
"require": {
"types": "./dist/nuxt.d.cts",
"default": "./dist/nuxt.cjs"
}
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"*.d.ts",
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "rimraf dist && run-s build:* && esno ./scripts/postbuild.ts && pnpm run test:attw",
"build:client": "vite build src/client",
"build:js": "unbuild",
"dev": "nr stub && cross-env INSPECT_DEV=true vite src/client",
"dev:client": "vite build src/client --watch",
"stub": "unbuild --stub",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"test:attw": "attw --pack",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish"
},
"peerDependencies": {
"vite": "^6.0.0"
},
"peerDependenciesMeta": {
"@nuxt/kit": {
"optional": true
}
},
"dependencies": {
"@antfu/utils": "^8.0.0",
"@rollup/pluginutils": "^5.1.4",
"debug": "^4.4.0",
"error-stack-parser-es": "^1.0.5",
"fs-extra": "^11.2.0",
"open": "^10.1.0",
"perfect-debounce": "^1.0.0",
"picocolors": "^1.1.1",
"sirv": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.2",
"@antfu/ni": "^23.2.0",
"@arethetypeswrong/cli": "^0.17.2",
"@iconify-json/catppuccin": "^1.2.8",
"@iconify/json": "^2.2.293",
"@nuxt/kit": "^3.15.1",
"@types/codemirror": "^5.60.15",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.5",
"@unocss/eslint-config": "^0.65.4",
"@unocss/eslint-plugin": "^0.65.4",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"@vueuse/core": "^12.3.0",
"@vueuse/router": "^12.3.0",
"bumpp": "^9.10.0",
"codemirror": "^5.65.16",
"codemirror-theme-vars": "^0.1.2",
"comlink": "^4.4.2",
"cross-env": "^7.0.3",
"diff-match-patch-es": "^1.0.1",
"echarts": "^5.6.0",
"eslint": "^9.17.0",
"esno": "^4.8.0",
"floating-vue": "^5.2.2",
"fuse.js": "^7.0.0",
"lint-staged": "^15.3.0",
"npm-run-all": "^4.1.5",
"ohash": "^1.1.4",
"pathe": "^2.0.0",
"pinia": "^2.3.0",
"prism-theme-vars": "^0.2.5",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"splitpanes": "^3.1.5",
"typescript": "~5.7.3",
"unbuild": "^3.2.0",
"unocss": "^0.65.4",
"unplugin-auto-import": "^19.0.0",
"unplugin-vue-components": "^28.0.0",
"unplugin-vue-router": "^0.10.9",
"vis-data": "7.1.7",
"vis-network": "9.1.6",
"vite": "^6.0.7",
"vite-dev-rpc": "^1.0.7",
"vite-hot-client": "^2.0.4",
"vue": "^3.5.13",
"vue-echarts": "^7.0.3",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.0"
},
"resolutions": {
"vite": "^6.0.7"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,vue,md}": [
"eslint --cache --fix"
]
}
}