-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.51 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
56
57
58
59
60
61
62
63
{
"name": "bunny-astro",
"description": "Astro adapter for Edge Scripting for bunny.net 🐰",
"version": "0.0.27",
"type": "module",
"types": "./dist/index.d.ts",
"author": "John L. Armstrong IV",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/jlarmstrongiv/bunny-astro.git"
},
"keywords": [
"BunnyCDN",
"bunny.net",
"bunny",
"cdn",
"bunny-launcher",
"typescript",
"edge-scripting",
"edge",
"scripting",
"adapter",
"astro",
"withastro",
"astro-adapter"
],
"bugs": "https://github.com/jlarmstrongiv/bunny-astro/issues",
"homepage": "https://bunny-launcher.net/adapters/astro/",
"exports": {
".": "./dist/index.js",
"./entrypoints/server.js": "./dist/entrypoints/server.js",
"./image-service": "./dist/entrypoints/image-service.js",
"./image-endpoint": "./dist/entrypoints/image-endpoint.js",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "npx tsx src/esbuild",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@bunny.net/edgescript-sdk": "^0.11.2",
"esbuild": "0.24.0",
"esbuild-plugin-node-protocol-imports": "^0.0.1"
},
"peerDependencies": {
"astro": "^4.2.0"
},
"devDependencies": {
"@tsconfig/node20": "20.1.4",
"@types/fs-extra": "11.0.4",
"astro": "4.16.7",
"fs-extra": "11.2.0",
"tsx": "4.19.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}