-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.43 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.43 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "failproofai",
"version": "0.0.6-beta.0",
"description": "The easiest way to manage policies that keep your AI agents reliable, on-task, and running autonomously — for Claude Code & the Agents SDK",
"bin": {
"failproofai": "./dist/cli.mjs"
},
"files": [
"bin/",
"src/",
"scripts/",
"lib/",
".next/standalone/",
"dist/",
"README.md"
],
"engines": {
"node": ">=20.9.0",
"bun": ">=1.3.0"
},
"scripts": {
"predev": "bun run build:cli && bun link",
"dev": "FAILPROOFAI_TELEMETRY_DISABLED=1 bun scripts/dev.ts --port 8020",
"build:cli": "bun build --target=node --format=esm --outfile=dist/cli.mjs bin/failproofai.mjs --external posthog-node && node -e \"const fs=require('fs');const c=fs.readFileSync('dist/cli.mjs','utf8');fs.writeFileSync('dist/cli.mjs',c.replace('#!/usr/bin/env bun','#!/usr/bin/env node').replace('// @bun\\n',''))\"",
"build": "bun build --target=node --format=cjs --outfile=dist/index.js src/index.ts && bun run build:cli && bun --bun next build && node -e \"const {cpSync}=require('fs');cpSync('.next/static','.next/standalone/.next/static',{recursive:true});\"",
"prestart": "bun run build:cli && bun link",
"start": "FAILPROOFAI_TELEMETRY_DISABLED=1 bun scripts/start.ts",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint . --config eslint.config.mjs",
"postinstall": "node scripts/postinstall.mjs",
"preuninstall": "node scripts/preuninstall.mjs",
"prepare": "bun run build",
"test:e2e": "vitest run --config vitest.config.e2e.mts",
"test:e2e:watch": "vitest --config vitest.config.e2e.mts",
"translate": "bun scripts/translate-docs/cli.ts",
"translate:readme": "bun scripts/translate-docs/cli.ts --readme-only",
"translate:docs": "bun scripts/translate-docs/cli.ts --docs-only",
"translate:dry-run": "bun scripts/translate-docs/cli.ts --dry-run",
"translate:validate": "bun scripts/translate-docs/cli.ts --validate"
},
"keywords": [
"claude",
"claude-code",
"claude-agents-sdk",
"anthropic",
"ai-agent",
"agent-reliability",
"agent-monitoring",
"autonomous-agent",
"failure-prevention",
"developer-tools",
"devtools",
"cli",
"local-first",
"hooks",
"policies"
],
"author": "ExosphereHost Inc. <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/exospherehost/failproofai",
"repository": {
"type": "git",
"url": "https://github.com/exospherehost/failproofai.git"
},
"bugs": {
"url": "https://github.com/exospherehost/failproofai/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@tanstack/react-virtual": "^3.13.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.2",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"clsx": "^2.1.1",
"eslint": "^10.2.0",
"eslint-config-next": "^16.2.2",
"happy-dom": "^20.7.0",
"lucide-react": "^1.0.1",
"next": "^16.2.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"typescript": "^6.0.2",
"@anthropic-ai/sdk": "^0.39.0",
"vitest": "^4.0.18"
},
"dependencies": {
"posthog-node": "^5.28.11"
}
}