-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.96 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.96 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@wyattjoh/astro-bun-adapter",
"version": "0.0.0-development",
"description": "Astro adapter for Bun with optimized static file serving and ISR support",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/wyattjoh/astro-bun-adapter.git"
},
"homepage": "https://github.com/wyattjoh/astro-bun-adapter#readme",
"bugs": {
"url": "https://github.com/wyattjoh/astro-bun-adapter/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"provenance": true
},
"exports": {
".": "./dist/index.js",
"./server.js": "./dist/server.js",
"./cache": "./dist/cache.js",
"./package.json": "./package.json"
},
"files": [
"dist",
"!dist/**/*.test.*",
"LICENSE",
"README.md"
],
"license": "MIT",
"author": "Wyatt Johnson",
"scripts": {
"build": "bunup src/index.ts src/server.ts src/cache.ts --target bun --format esm --dts --sourcemap --clean --packages external",
"test": "bun test --concurrent src/",
"typecheck": "tsc -p . --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepare": "husky",
"prepack": "bun run build",
"release": "semantic-release"
},
"keywords": [
"astro-adapter",
"bun",
"withastro"
],
"dependencies": {
"cache-control-parser": "^2.0.6",
"cbor2": "^2.2.1",
"debug": "^4.4.3",
"mrmime": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "^1.3.7",
"@types/debug": "^4.1.12",
"astro": "^5.0.0",
"bunup": "^0.16.21",
"husky": "^9.1.7",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3"
},
"peerDependencies": {
"astro": "^5.0.0"
},
"engines": {
"bun": ">=1.0.0"
}
}