forked from westacks/inertia-svelte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.74 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
{
"name": "@westacks/inertia-svelte",
"version": "1.0.20",
"license": "MIT",
"description": "The Svelte adapter for Inertia.js",
"author": "Dmytro Morozov <[email protected]>",
"homepage": "https://inertiajs.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/westacks/inertia-svelte.git"
},
"bugs": {
"url": "https://github.com/westacks/inertia-svelte/issues"
},
"keywords": [
"svelte",
"inertia"
],
"scripts": {
"build": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"svelte": "^4.0.0"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.1.1",
"@sveltejs/kit": "^2.5.0",
"@sveltejs/package": "^2.2.6",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"publint": "^0.2.7",
"svelte": "^4.2.9",
"svelte-check": "^3.6.3",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.12"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./server": {
"types": "./dist/server.d.ts",
"svelte": "./dist/server.js"
},
"./components/*": {
"types": "./dist/components/*",
"svelte": "./dist/components/*"
}
},
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"typesVersions": {
">4.0": {
".": [
"./dist/index.d.ts"
]
}
},
"dependencies": {
"@inertiajs/core": "^1.0.14",
"lodash": "^4.17.21"
}
}