-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.22 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
{
"name": "writmint",
"version": "0.6.0",
"description": "A verifier for capabilities an author can't author past. Declare a capability manifest, scope its permissions, harden it before approval, replay its execution, and require a hash-bound human approval before it runs.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.browser.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist/",
"LICENSE",
"NOTICE",
"README.md"
],
"scripts": {
"build": "rimraf dist && tsc",
"test": "vitest run --reporter=json --outputFile=./test-output.json",
"test:verbose": "vitest run",
"test:watch": "vitest",
"mcp": "tsx tools/mcp/server.ts",
"dogfood:corpus": "tsx fixtures/dogfood-corpus/run-corpus.ts",
"demo": "npm run demo:smoke && npm run demo:approval && npm run demo:replay && npm run demo:e2e",
"demo:smoke": "tsx fixtures/suspicious-transaction-triage/smoke.ts",
"demo:approval": "tsx fixtures/suspicious-transaction-triage/approval-smoke.ts",
"demo:replay": "tsx fixtures/suspicious-transaction-triage/replay-smoke.ts",
"demo:e2e": "tsx fixtures/suspicious-transaction-triage/end-to-end.ts",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"ai-agents",
"capability-manifest",
"permission-scoping",
"approval-workflow",
"manifest-hardening",
"audit",
"replay",
"governance",
"enterprise",
"typescript"
],
"author": {
"name": "Raju K.C",
"email": "kc.razu@gmail.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/razukc/writmint.git"
},
"homepage": "https://github.com/razukc/writmint#readme",
"bugs": {
"url": "https://github.com/razukc/writmint/issues"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.1.8",
"fast-check": "^3.15.0",
"rimraf": "^6.1.2",
"tsx": "^4.19.0",
"typescript": "^5.3.3",
"vitest": "^4.1.8"
}
}