-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.1 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
{
"name": "agenttx",
"version": "0.3.0",
"description": "Proof-carrying transactions for AI coding agents. Verify, commit, or roll back every change.",
"type": "module",
"bin": {
"agenttx": "./dist/src/cli.js"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": [
"dist",
"scripts/fake-agent.mjs",
"scripts/proof-demo.mjs",
"docs",
"README.md",
"LICENSE",
"SECURITY.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "node scripts/lint.mjs",
"test": "tsc -p tsconfig.build.json && vitest run",
"test:coverage": "tsc -p tsconfig.build.json && vitest run --coverage",
"demo": "node dist/src/cli.js demo",
"demo:proof": "node scripts/proof-demo.mjs",
"gallery:generate": "node scripts/generate-proof-gallery.mjs",
"demo:keep": "node dist/src/cli.js demo --keep",
"benchmark": "node dist/benchmarks/workspace.js",
"benchmark:quick": "node dist/benchmarks/workspace.js 100",
"scan:secrets": "node scripts/secret-scan.mjs",
"check:links": "node scripts/check-links.mjs",
"release:verify": "node scripts/release-verify.mjs",
"prepack": "tsc -p tsconfig.build.json"
},
"engines": {
"node": ">=20"
},
"keywords": [
"ai",
"agent",
"coding-agent",
"claude-code",
"codex",
"developer-tools",
"git",
"rollback",
"transactions",
"agent-safety",
"agent-reliability"
],
"author": "AgentTX contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aliengineering-byte/agenttx.git"
},
"bugs": {
"url": "https://github.com/aliengineering-byte/agenttx/issues"
},
"homepage": "https://github.com/aliengineering-byte/agenttx#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@vitest/coverage-v8": "^4.1.10",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}