-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 895 Bytes
/
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
{
"name": "my-library",
"description": "A base template for building a shareable web components library with Vite + Svelte",
"version": "0.0.0",
"type": "module",
"module": "dist/lib/my-library.js",
"main": "dist/lib/my-library.umd.js",
"scripts": {
"start": "npm run dev -s",
"dev": "vite --config vite.demo.config.ts",
"build": "vite build",
"build:demo": "vite build --config vite.demo.config.ts",
"preview": "vite preview --config vite.demo.config.ts",
"check": "svelte-check --tsconfig ./tsconfig.json",
"prepublishOnly": "npm run build -s"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.4.1",
"@tsconfig/svelte": "^3.0.0",
"svelte": "^4.0.0",
"svelte-check": "^3.4.3",
"svelte-preprocess": "^5.0.3",
"tslib": "^2.4.0",
"typescript": "^5.0.0",
"vite": "^4.4.9"
},
"files": [
"dist/lib"
]
}