-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
34 lines (34 loc) · 1015 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
31
32
33
34
{
"name": "typesafe-i18n-demo-sveltekit",
"description": "Showcase of typesafe-i18n working in a SvelteKit project",
"version": "1.0.0",
"author": "ivanhofer",
"license": "MIT",
"homepage": "https://github.com/ivanhofer/typesafe-i18n-demo-sveltekit",
"repository": {
"type": "git",
"url": "https://github.com/ivanhofer/typesafe-i18n-demo-sveltekit"
},
"scripts": {
"dev": "npm-run-all --parallel vite typesafe-i18n",
"vite": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"typesafe-i18n": "typesafe-i18n"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.22.1",
"npm-run-all": "^4.1.5",
"sass": "^1.63.6",
"svelte": "^4.0.5",
"svelte-check": "^3.4.5",
"tslib": "^2.6.0",
"typesafe-i18n": "^5.24.3",
"typescript": "^5.1.6",
"vite": "^4.4.2"
},
"type": "module"
}