-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.59 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
{
"name": "sveltekit-zero-api",
"description": "Provides type-safety between front- and backend of your SvelteKit project",
"version": "0.15.8",
"scripts": {
"dev": "set NODE_ENV=zeroapi && vite dev",
"package": "svelte-package -w",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.15.5",
"@sveltejs/package": "^2.0.2",
"@types/node": "^18.15.11",
"chokidar": "^3.5.3",
"svelte": "^3.58.0",
"svelte-check": "^3.2.0",
"svelte-preprocess": "^5.0.3",
"svelte2tsx": "^0.6.11",
"tslib": "^2.5.0",
"vite": "^4.2.1",
"typescript": "^5.0.4"
},
"peerDependencies": {
"@sveltejs/kit": "^1.5.5",
"svelte": "^3.55.1",
"typescript": ">=5.0.0"
},
"repository": "github:refzlund/sveltekit-zero-api",
"homepage": "https://github.com/Refzlund/sveltekit-zero-api",
"bugs": {
"url": "https://github.com/Refzlund/sveltekit-zero-api/issues"
},
"type": "module",
"license": "MIT",
"module": "esnext",
"files": [
"dist"
],
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./http": "./dist/http.js",
"./api": "./dist/api/index.js",
"./z": "./dist/z.js",
"./helpers": "./dist/helpers.js"
},
"typesVersions": {
"*": {
"http": [
"dist/http.d.ts"
],
"api": [
"dist/api/index.d.ts"
],
"z": [
"dist/z.d.ts"
],
"helpers": [
"dist/helpers.d.ts"
]
}
},
"keywords": [
"sveltekit",
"api",
"endpoint",
"typesafety",
"typescript"
]
}