-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.35 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
{
"name": "@rawback/cli",
"version": "1.0.14",
"private": true,
"description": "Rawback CLI for humans and AI agents",
"type": "module",
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build --compile --minify --external cpu-features --outfile dist/rawback src/index.ts",
"build:windows-arm64": "bun run scripts/build-windows-arm64.ts",
"build:all": "goreleaser build --snapshot --clean",
"typecheck": "tsc --noEmit",
"test": "bun test",
"lint": "oxlint src test",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"check": "bun run typecheck && bun run test && bun run lint && bun run format:check && bun run build",
"hooks:install": "lefthook install"
},
"dependencies": {
"@inquirer/prompts": "^8.7.0",
"@rawback/ccapi-js": "1.1.0",
"@rawback/sdk": "0.3.2",
"ink": "^7.1.1",
"react": "^19.2.8",
"react-devtools-core": "^7.0.1",
"rxjs": "^7.8.2",
"yargs": "^18.1.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.18",
"@types/yargs": "^17.0.35",
"fflate": "^0.8.3",
"lefthook": "^2.1.12",
"oxfmt": "^0.65.0",
"oxlint": "^1.80.0",
"typescript": "^7.0.2"
},
"optionalDependencies": {
"exiftool-vendored.exe": "13.59.0",
"exiftool-vendored.pl": "13.59.0"
},
"packageManager": "bun@1.4.0"
}