-
-
Notifications
You must be signed in to change notification settings - Fork 144
/
package.json
32 lines (32 loc) · 1.13 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
{
"name": "vite-svelte",
"type": "module",
"private": true,
"description": "unplugin-icons + Svelte (Vite)",
"scripts": {
"build": "cross-env DEBUG=unplugin-icons:* vite build",
"dev": "cross-env DEBUG=unplugin-icons:* vite",
"serve": "npm run build && cross-env DEBUG=unplugin-icons:* vite preview",
"build-custom": "cross-env DEBUG=unplugin-icons:* CUSTOM_COMPILER=true vite build",
"dev-custom": "cross-env DEBUG=unplugin-icons:* CUSTOM_COMPILER=true vite",
"serve-custom": "npm run build-custom && cross-env DEBUG=unplugin-icons:* CUSTOM_COMPILER=true vite preview"
},
"devDependencies": {
"@iconify-json/icon-park": "^1.2.1",
"@iconify-json/logos": "^1.2.3",
"@iconify-json/mdi": "^1.2.1",
"@sveltejs/vite-plugin-svelte": "^5.0.1",
"@tsconfig/svelte": "^5.0.4",
"cross-env": "^7.0.3",
"svelte": "^5.4.0",
"svelte-check": "^4.1.0",
"svelte-preprocess": "^6.0.3",
"typescript": "^5.7.2",
"unplugin-icons": "workspace:*",
"vite": "^6.0.2"
},
"stackblitz": {
"installDependencies": false,
"startCommand": "node .stackblitz.js && npm install && npm run dev"
}
}