forked from sveltejs/kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.06 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.06 KB
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
{
"name": "@sveltejs/adapter-auto",
"version": "7.0.0",
"description": "Automatically chooses the SvelteKit adapter for your current environment, if possible.",
"keywords": [
"adapter",
"automatically",
"deploy",
"hosting",
"platform",
"svelte",
"sveltekit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sveltejs/kit.git",
"directory": "packages/adapter-auto"
},
"license": "MIT",
"homepage": "https://svelte.dev/docs/kit/adapter-auto",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
},
"./package.json": "./package.json"
},
"types": "index.d.ts",
"files": [
"files",
"index.js",
"index.d.ts",
"adapters.js"
],
"scripts": {
"lint": "prettier --check .",
"format": "pnpm lint --write",
"check": "tsc",
"test": "vitest run"
},
"devDependencies": {
"@sveltejs/kit": "workspace:^",
"@sveltejs/vite-plugin-svelte": "catalog:",
"@types/node": "catalog:",
"typescript": "^5.3.3",
"vitest": "catalog:"
},
"peerDependencies": {
"@sveltejs/kit": "^2.0.0"
}
}