-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 968 Bytes
/
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
{
"name": "autotr",
"author": "sawang",
"version": "0.0.1",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --target bun --outdir ./dist",
"start": "NODE_ENV=production bun dist/index.js",
"check": "biome check",
"check:fix": "biome check --fix --unsafe",
"pair:x86": "bun build --compile --minify --sourcemap --target=bun-linux-x64-modern ./src/pair.ts --outfile pair-x86",
"pair:aarch64": "bun build --compile --minify --sourcemap --target=bun-linux-arm64-modern ./src/pair.ts --outfile pair-aarch64 "
},
"dependencies": {
"@elysiajs/cors": "^1.1.1",
"elliptic": "^6.6.1",
"elysia": "^1.1.25",
"elysia-helmet": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.14",
"@types/elliptic": "^6.4.18",
"@types/prompts": "^2.4.9",
"prompts": "^2.4.2",
"typescript": "^5.7.2"
}
}