-
-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathpackage.json
31 lines (31 loc) · 1.06 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
{
"name": "vite-svelte",
"type": "module",
"private": true,
"description": "unplugin-icons + Svelte (Vite)",
"scripts": {
"build": "DEBUG='unplugin-icons:*' vite build",
"dev": "DEBUG='unplugin-icons:*' vite",
"serve": "npm run build && DEBUG='unplugin-icons:*' vite preview",
"build-custom": "DEBUG='unplugin-icons:*' CUSTOM_COMPILER=true vite build",
"dev-custom": "DEBUG='unplugin-icons:*' CUSTOM_COMPILER=true vite",
"serve-custom": "npm run build-custom && DEBUG='unplugin-icons:*' CUSTOM_COMPILER=true vite preview"
},
"devDependencies": {
"@iconify-json/icon-park": "^1.2.2",
"@iconify-json/logos": "^1.2.4",
"@iconify-json/mdi": "^1.2.3",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tsconfig/svelte": "^5.0.4",
"svelte": "^5.20.1",
"svelte-check": "^4.1.4",
"svelte-preprocess": "^6.0.3",
"typescript": "^5.7.3",
"unplugin-icons": "workspace:*",
"vite": "^6.1.0"
},
"stackblitz": {
"installDependencies": false,
"startCommand": "node .stackblitz.js && npm install && npm run dev"
}
}