-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 994 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
35
{
"name": "typesafe-i18n-demo-svelte",
"description": "Showcase of typesafe-i18n working in a Svelte project",
"version": "1.0.0",
"author": "ivanhofer",
"license": "MIT",
"homepage": "https://github.com/ivanhofer/typesafe-i18n-demo-svelte",
"repository": {
"type": "git",
"url": "https://github.com/ivanhofer/typesafe-i18n-demo-svelte"
},
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel vite typesafe-i18n",
"vite": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"typesafe-i18n": "typesafe-i18n"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "1.0.0-next.40",
"@tsconfig/svelte": "^3.0.0",
"npm-run-all": "^4.1.5",
"svelte": "^3.46.4",
"svelte-check": "^2.4.6",
"svelte-preprocess": "^4.10.4",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"vite": "^2.8.6"
},
"dependencies": {
"typesafe-i18n": "^5.1.0"
}
}