-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 899 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 899 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
37
{
"name": "@askspecter/cli",
"version": "1.0.0",
"description": "SPECTER CLI — Know Your Agent behavioral reputation scoring tool",
"type": "module",
"bin": {
"specter": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js"
},
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"tsup": "^8.1.0",
"tsx": "^4.15.0",
"typescript": "^5.5.0",
"vitest": "^1.6.0"
},
"keywords": ["specter", "kya", "agent", "reputation", "cli", "erc-8004", "blockchain"],
"license": "MIT",
"homepage": "https://askspecter.lol",
"repository": {
"type": "git",
"url": "https://github.com/askspecter/specter-cli.git"
},
"engines": {
"node": ">=18"
}
}