-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.41 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.41 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
{
"name": "@thebestmoshe/yoto-cli",
"version": "0.2.0",
"description": "CLI for interacting with the Yoto API",
"type": "module",
"bin": {
"yoto": "./dist/yoto"
},
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun build src/cli.ts --compile --outfile dist/yoto",
"build:linux-x64": "bun build src/cli.ts --compile --target=bun-linux-x64 --outfile dist/yoto-linux-x64",
"build:linux-arm64": "bun build src/cli.ts --compile --target=bun-linux-arm64 --outfile dist/yoto-linux-arm64",
"build:darwin-x64": "bun build src/cli.ts --compile --target=bun-darwin-x64 --outfile dist/yoto-darwin-x64",
"build:darwin-arm64": "bun build src/cli.ts --compile --target=bun-darwin-arm64 --outfile dist/yoto-darwin-arm64",
"build:windows-x64": "bun build src/cli.ts --compile --target=bun-windows-x64 --outfile dist/yoto-windows-x64.exe",
"build:all": "bun run build:linux-x64 && bun run build:linux-arm64 && bun run build:darwin-x64 && bun run build:darwin-arm64 && bun run build:windows-x64",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/TheBestMoshe/yoto-cli.git"
},
"author": "TheBestMoshe",
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5"
},
"dependencies": {
"commander": "^14.0.2",
"zod": "^4.3.4"
}
}