-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
30 lines (30 loc) · 802 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": "sveltekit-typescript-showcase",
"version": "1.0.0",
"description": "This repository shows how Svelte and SvelteKit work together with TypeScript.",
"author": "ivanhofer",
"license": "MIT",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@sveltejs/adapter-auto": "2.1.0",
"@sveltejs/kit": "^1.22.1",
"svelte": "^4.0.5",
"svelte-check": "^3.4.5",
"svelte-preprocess": "^5.0.4",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vite": "^4.4.2"
},
"type": "module",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ivanhofer"
}
}