-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 913 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 913 Bytes
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
{
"name": "adapter-bun",
"version": "0.0.1",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"type": "module",
"private": true,
"scripts": {
"clean": "rm -rf ./dist",
"build:src": "bunx tsc -p ./tsconfig.build.json",
"build": "bun run clean && bun run build:src",
"prepare": "bun run build",
"test": "bun test",
"typecheck": "bunx tsc --noEmit"
},
"dependencies": {
"sharp": "^0.33.0"
},
"devDependencies": {
"@types/bun": "latest",
"next": "16.2.0"
},
"peerDependencies": {
"typescript": "^5"
},
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}