-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.69 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
{
"name": "@agentage/cli",
"version": "0.1.19",
"description": "CLI tool for creating and running AI agents locally",
"type": "module",
"main": "./dist/index.js",
"bin": {
"agent": "./dist/cli.js",
"agentkit": "./dist/cli.js"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"verify": "npm run type-check && npm run lint && npm run build && npm run test",
"clean": "rm -rf dist coverage",
"prepublishOnly": "npm run verify"
},
"keywords": [
"cli",
"ai",
"agent",
"agentkit",
"typescript"
],
"author": "Agentage",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/agentage/cli.git"
},
"bugs": {
"url": "https://github.com/agentage/cli/issues"
},
"homepage": "https://github.com/agentage/cli#readme",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.2",
"gray-matter": "^4.0.3",
"inquirer": "^13.0.1",
"js-yaml": "^4.1.0",
"node-machine-id": "1.1.12",
"open": "^11.0.0",
"yaml": "^2.8.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"eslint": "^9.39.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}