-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.58 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
{
"name": "@oneclicksystems/agentproof",
"version": "0.1.0-rc.5",
"description": "Evidence-first authorization, exactly-once execution, independent verification, compensation, and signed receipts for consequential coding-agent actions.",
"type": "module",
"main": "dist/portable.js",
"types": "dist/portable.d.ts",
"scripts": {
"build": "tsc",
"postbuild": "chmod 755 dist/cli.js dist/dev-authority-cli.js",
"prepare": "npm run build",
"typecheck": "tsc --noEmit",
"test": "npm run build && node --test dist/test/*.test.js",
"demo": "npm run build && node dist/demo.js",
"verify-receipt": "npm run build && node dist/verify-receipt.js",
"pack:audit": "npm pack --dry-run",
"docs:check": "node scripts/check-documentation-closure.mjs",
"check": "npm run typecheck && npm test && npm run docs:check && npm run pack:audit",
"schemas:generate": "node scripts/generate-schemas.mjs",
"fixtures:generate": "npm run build && node scripts/generate-rc3-fixtures.mjs"
},
"devDependencies": {
"@types/node": "^25.3.0",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"typescript": "^5.4.5"
},
"exports": {
".": {
"types": "./dist/portable.d.ts",
"import": "./dist/portable.js"
},
"./schemas/*": "./schemas/*",
"./development-authority": {
"types": "./dist/portable-development-authority.d.ts",
"import": "./dist/portable-development-authority.js"
}
},
"bin": {
"agentproof": "./dist/cli.js",
"agentproof-dev-authority": "./dist/dev-authority-cli.js"
},
"files": [
"dist/cli.js",
"dist/cli.d.ts",
"dist/dev-authority-cli.js",
"dist/dev-authority-cli.d.ts",
"dist/portable*.js",
"dist/portable*.d.ts",
"dist/repository-*.js",
"dist/repository-*.d.ts",
"dist/signer.js",
"dist/signer.d.ts",
"dist/hash.js",
"dist/hash.d.ts",
"dist/types.js",
"dist/types.d.ts",
"dist/receipt-v2.js",
"dist/receipt-v2.d.ts",
"dist/strict-json.js",
"dist/strict-json.d.ts",
"schemas/*.json",
"fixtures/*.json",
"migrations/*.sql",
"docs/**/*.md",
"AGENTS.md",
"CONTRIBUTING.md",
"CHANGELOG.md",
"README.md",
"SECURITY.md",
"LICENSE"
],
"engines": {
"node": ">=22.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AyobamiH/agentproof.git"
},
"bugs": {
"url": "https://github.com/AyobamiH/agentproof/issues"
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"license": "Apache-2.0",
"homepage": "https://github.com/AyobamiH/agentproof#readme"
}