-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.68 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.68 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
{
"name": "@agentage/cli",
"version": "0.2.0",
"description": "Agentage CLI and daemon — control plane for AI agents",
"type": "module",
"main": "./dist/index.js",
"bin": {
"agentage": "./dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"type-check": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist *.tsbuildinfo coverage",
"verify": "npm run type-check && npm run lint && npm run format:check && npm run test && npm run build",
"prepublishOnly": "npm run verify"
},
"dependencies": {
"@agentage/core": "^0.2.0",
"@agentage/platform": "^0.2.0",
"@supabase/supabase-js": "2.99.3",
"chalk": "latest",
"commander": "latest",
"express": "latest",
"gray-matter": "latest",
"jiti": "latest",
"open": "latest",
"ws": "latest"
},
"devDependencies": {
"@types/express": "latest",
"@types/node": "latest",
"@types/ws": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@vitest/coverage-v8": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"prettier": "latest",
"typescript": "latest",
"vitest": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/agentage/cli.git"
},
"license": "MIT"
}