-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 759 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 759 Bytes
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
{
"name": "captoken",
"version": "0.1.0-alpha.1",
"description": "Capability tokens for governed agent and tool authorization.",
"main": "dist/index.js",
"bin": {
"captoken": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"check": "npm run build",
"lint": "echo \"Add linter later\"",
"test": "echo \"Add tests later\""
},
"keywords": [
"ai-agents",
"capabilities",
"authorization",
"governance",
"agentic-ai",
"typescript",
"cli"
],
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0"
},
"dependencies": {
"yaml": "^2.8.0"
}
}