-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.03 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "fd-apps-prevail-cli",
"version": "1.7.3",
"description": "prevAIl \u2014 a terminal cockpit for your life domains.",
"type": "module",
"private": false,
"license": "GPL-3.0-only",
"homepage": "https://github.com/fru-dev3/prevail-cli",
"repository": {
"type": "git",
"url": "https://github.com/fru-dev3/prevail-cli.git"
},
"keywords": [
"tui",
"terminal",
"ai",
"claude",
"codex",
"gemini",
"personal-ai",
"life-os",
"vault",
"markdown",
"opentui"
],
"bin": {
"prevail": "./src/index.tsx",
"aru": "./src/index.tsx"
},
"files": [
"src",
"vault-demo",
"LICENSE",
"README.md"
],
"scripts": {
"start": "bun run src/index.tsx",
"dev": "bun --watch run src/index.tsx",
"demo": "bun run src/index.tsx demo",
"doctor": "bun run src/index.tsx doctor",
"build": "bun build --compile --outfile=dist/prevail src/index.tsx",
"build:darwin-arm64": "bun build --compile --target=bun-darwin-arm64 --outfile=dist/prevail-darwin-arm64 src/index.tsx",
"build:darwin-x64": "bun build --compile --target=bun-darwin-x64 --outfile=dist/prevail-darwin-x64 src/index.tsx",
"build:linux-x64": "bun build --compile --target=bun-linux-x64 --outfile=dist/prevail-linux-x64 src/index.tsx",
"build:linux-arm64": "bun build --compile --target=bun-linux-arm64 --outfile=dist/prevail-linux-arm64 src/index.tsx",
"typecheck": "bun node_modules/typescript/bin/tsc --noEmit",
"test": "bun test src/",
"test:integration": "INTEGRATION_TESTS=1 bun test src/cli-bridge.integration.test.ts",
"lint": "biome lint src/",
"lint:fix": "biome lint --write src/",
"format": "biome format --write src/"
},
"dependencies": {
"@opentui/core": "^0.3.0",
"@opentui/react": "^0.3.0",
"react": "^19.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@opentui/core-darwin-x64": "^0.3.0",
"@types/bun": "^1.3.14",
"@types/react": "^19.0.0",
"typescript": "^5.6.0"
},
"engines": {
"bun": ">=1.3.0"
}
}