-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathpackage.json
55 lines (55 loc) · 1.09 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
{
"name": "@sveltejs/adapter-auto",
"version": "4.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": "/~https://github.com/sveltejs/kit",
"directory": "packages/adapter-auto"
},
"license": "MIT",
"homepage": "https://svelte.dev",
"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": "^5.0.1",
"@types/node": "^18.19.48",
"typescript": "^5.3.3",
"vitest": "^2.1.6"
},
"dependencies": {
"import-meta-resolve": "^4.1.0"
},
"peerDependencies": {
"@sveltejs/kit": "^2.0.0"
}
}