-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 951 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 951 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
{
"name": "atlas",
"version": "1.5.5",
"module": "src/index.ts",
"type": "module",
"scripts": {
"setup": "bun install",
"dev": "bun --watch src/index.ts",
"start": "bun run src/index.ts",
"build:stage": "powershell -NoProfile -ExecutionPolicy Bypass -File ./installer/build_installer.ps1 -SkipMsi",
"build:setup": "powershell -NoProfile -ExecutionPolicy Bypass -File ./installer/build_installer.ps1",
"build": "bun run build:setup"
},
"devDependencies": {
"@types/bun": "latest",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.4",
"@types/uuid": "^9.0.8",
"ini": "^4.1.3"
},
"peerDependencies": {
"typescript": "^5.4.5"
},
"dependencies": {
"@types/ini": "^4.1.1",
"axios": "^1.7.2",
"bun-socket": "^0.0.1",
"chalk": "^5.3.0",
"crypto": "^1.0.1",
"hono": "^4.4.6",
"jsonwebtoken": "^9.0.2",
"prompts": "^2.4.2",
"uuid": "^10.0.0"
}
}