-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "@deno/astro-adapter",
"description": "Deploy your Astro site to a Deno server",
"version": "0.1.4",
"type": "module",
"author": "denoland",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/denoland/deno-astro-adapter.git"
},
"keywords": [
"withastro",
"astro-adapter"
],
"bugs": "https://github.com/denoland/deno-astro-adapter/issues",
"homepage": "https://github.com/denoland/deno-astro-adapter/",
"exports": {
".": "./src/index.ts",
"./server.ts": "./src/server.ts",
"./__deno_imports.ts": "./src/__deno_imports.ts",
"./package.json": "./package.json"
},
"files": [
"src"
],
"scripts": {
"test": "deno test --allow-run --allow-env --allow-read --allow-net ./test/",
"fmt": "deno fmt"
},
"dependencies": {
"esbuild": "^0.19.2",
"lodash": "^4.17.21"
},
"peerDependencies": {
"astro": "^4.2.1"
},
"devDependencies": {
"@types/lodash": "^4.17.5",
"@types/node": "^20.11.5",
"astro": "^4.2.1",
"typescript": "^5.3.3"
}
}