forked from willin/svelte-turbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.08 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@svelte-dev/i18n",
"version": "1.0.0",
"description": "Internationalization library for Svelte",
"author": "Willin Wang <willin@willin.org> (https://willin.wang/)",
"keywords": [
"svelte",
"i18n",
"internationalization",
"localization"
],
"repository": {
"type": "git",
"url": "git+https://github.com/willin/svelte-turbo.git"
},
"bugs": {
"url": "https://github.com/willin/svelte-turbo/issues"
},
"homepage": "https://svelte.js.cool",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "echo vite dev",
"build": "vite build && npm run package",
"dev:docs": "typedoc --watch",
"build:docs": "typedoc",
"lint": "prettier --write . && eslint . --fix",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"svelte": "./dist/index.js"
}
},
"files": [
"LICENSE",
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"dependencies": {
"deepmerge": "^4.3.1",
"dlv": "^1.1.3",
"templite": "^1.2.0"
},
"peerDependencies": {},
"devDependencies": {
"@svelte-dev/eslint-config": "*",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.27.4",
"@sveltejs/package": "^2.0.0",
"@types/dlv": "^1.1.4",
"eslint": "^8.28.0",
"publint": "^0.1.9",
"svelte": "^5.0.0-next.22",
"svelte-check": "^3.6.0",
"tslib": "^2.4.1",
"typedoc-plugin-extras": "^3.0.0",
"typedoc-plugin-google-ads": "^1.6.0",
"typedoc-plugin-keywords": "^1.6.0",
"typedocs": "^0.6.7",
"typescript": "^5.0.0",
"vite": "^4.4.2",
"vitest": "^0.34.0"
},
"svelte": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module"
}