-
-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "webview-ui",
"version": "0.0.1",
"private": true,
"type": "module",
"exports": {
".": {
"import": "./index.js",
"types": "./index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"build-production": "npm run clean && npm run build",
"clean": "shx rm -rf out dist",
"check:types": "tsc -p .",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "npm run check:types && npm run check"
},
"dependencies": {
"@tanstack/svelte-query": "^6.1.12",
"@vscode/webview-ui-toolkit": "^1.4.0",
"utils-disposables": "file:../utils-disposables",
"utils-logger": "file:../utils-logger",
"vscode-webview-rpc": "file:../webview-rpc",
"webview-api": "file:../webview-api"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tsconfig/svelte": "^5.0.8",
"@types/vscode-webview": "^1.57.5",
"@vscode/codicons": "^0.0.45",
"svelte": "^5.55.1",
"svelte-check": "^4.4.6",
"svelte-preprocess": "^6.0.3",
"typescript": "~5.9.3",
"vite": "^8.0.3"
},
"engines": {
"node": ">=22.20.0"
}
}