-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "@beeai/cli",
"version": "0.6.0",
"description": "CLI client for bee.computer",
"repository": {
"type": "git",
"url": "https://github.com/bee-computer/bee-cli.git"
},
"license": "MIT",
"type": "module",
"bin": {
"bee": "bin/bee.js"
},
"exports": {
"./lib": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js"
}
},
"files": [
"bin/bee.js",
"dist/lib",
"dist/platforms",
"scripts/postinstall.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun build ./sources/main.ts --compile --outfile ./dist/bee",
"build:lib": "bash ./scripts/build-lib.sh",
"build:all": "bash ./scripts/build-all.sh",
"dev": "bun ./sources/main.ts",
"prepack": "bun run build:lib && bun run build:all",
"postinstall": "node ./scripts/postinstall.js",
"release": "bash ./scripts/release.sh",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@inquirer/prompts": "^5.3.2",
"date-fns": "^4.1.0",
"handlebars": "^4.7.8",
"qrcode": "^1.5.4",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/qrcode": "^1.5.5",
"bun-types": "^1.3.8",
"typescript": "^5.7.3"
}
}