-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "svelte-adapter-deno",
"version": "0.9.1",
"repository": {
"type": "git",
"url": "https://github.com/pluvial/svelte-adapter-deno"
},
"license": "MIT",
"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",
"deps.ts"
],
"scripts": {
"dev": "rollup -cw",
"build": "rollup -c",
"test": "echo 'no tests here' # TODO: basic smoke tests",
"check": "echo 'check not working' # tsc",
"lint": "prettier --check . --ignore-path .gitignore",
"format": "pnpm lint --write",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@sveltejs/kit": "^1.3.3",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"rollup": "^3.12.0"
},
"peerDependencies": {
"@sveltejs/kit": "^2.4.0"
},
"packageManager": "pnpm@9.7.0+sha256.b35018fbfa8f583668b2649e407922a721355cd81f61beeb4ac1d4258e585559"
}