-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.04 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
{
"name": "actionproof",
"version": "0.3.0",
"description": "Narrow local CLI for deterministic pre-execution policy checks on send_email, form_submit, and pay_invoice requests.",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"actionproof": "dist/cli.js"
},
"scripts": {
"test": "vitest run",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"build": "tsc -p tsconfig.json && chmod +x dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/selfradiance/ActionProof.git"
},
"keywords": [
"cli",
"policy",
"typescript",
"send-email",
"form-submit",
"pay-invoice"
],
"author": "",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/selfradiance/ActionProof/issues"
},
"homepage": "https://github.com/selfradiance/ActionProof#readme",
"dependencies": {
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}