-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.35 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
{
"name": "pocketbasesidecart",
"module": "index.ts",
"type": "module",
"scripts": {
"build": "bun run buildLinux && bun run buildArm64 && bun run buildWindows64 && bun run buildMacArm64 && bun run buildMacX64",
"buildLinux": "bun build --compile index.ts --target=bun-linux-x64 --sourcemap --outfile pocketbasesidecart_linux_x64",
"buildArm64": "bun build --compile index.ts --target=bun-linux-arm64 --sourcemap --outfile pocketbasesidecart_linux_arm64",
"buildWindows64": "bun build --compile index.ts --target=bun-windows-x64 --sourcemap --outfile pocketbasesidecart_windows_x64",
"buildMacArm64": "bun build --compile index.ts --target=bun-darwin-arm64 --sourcemap --outfile pocketbasesidecart_mac_arm64",
"buildMacX64": "bun build --compile index.ts --target=bun-darwin-x64 --sourcemap --outfile pocketbasesidecart_mac_x64",
"start": "bun run --entry dist/index.js"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/eventsource": "^1.1.15",
"@types/mime-types": "^2.1.4",
"@types/web-push": "^3.6.3",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"eventsource": "^2.0.2",
"eventsource-polyfill": "^0.9.6",
"file-type": "^19.0.0",
"mime-types": "^2.1.35",
"pocketbase": "^0.21.2",
"web-push": "^3.6.7"
}
}