-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.2 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
53
54
{
"name": "@deno/svelte-adapter",
"version": "0.1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/denoland/svelte-adapter.git"
},
"bugs": {
"url": "https://github.com/denoland/svelte-adapter/issues"
},
"author": "the Deno authors",
"license": "MIT",
"description": "Official Deno adapter for SvelteKit",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./__internal": {
"types": "./dist/__internal.d.ts",
"default": "./dist/__internal.js"
}
},
"scripts": {
"fixture-deps": "cd test/fixture && npm ci",
"test": "deno test -A",
"build": "tsc && node tools/build.mjs",
"prepublishOnly": "npm run build"
},
"keywords": [
"Deno",
"Svelte",
"SvelteKit"
],
"files": [
"dist/"
],
"peerDependencies": {
"@sveltejs/kit": "^2.31.0"
},
"dependencies": {
"@deno/experimental-route-config": "^0.0.5"
},
"devDependencies": {
"@types/deno": "^2.0.0",
"@types/node": "^22.10.7",
"expect": "^29.7.0",
"linkedom": "^0.18.6",
"typescript": "^5.7.3",
"urlpattern-polyfill": "^10.0.0"
}
}