-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.53 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
{
"name": "agentkit",
"version": "0.0.1",
"private": true,
"description": "AgentKit monorepo - AI agent framework and SDK",
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "npm run build -w @agentage/core && npm run build -w @agentage/sdk && npm run build -w @agentage/model-openai",
"type-check": "npm run type-check --workspaces",
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint:fix --workspaces",
"test": "npm run test --workspaces",
"test:watch": "npm run test:watch --workspaces",
"test:coverage": "npm run test:coverage --workspaces",
"clean": "npm run clean --workspaces",
"verify": "npm run build && npm run type-check && npm run lint && npm run test"
},
"keywords": [
"agent",
"agentkit",
"ai",
"agents",
"framework",
"automation",
"toolkit",
"multi-agent"
],
"author": "Volodymyr Vreshch <vreshch@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/agentage/agentkit.git"
},
"bugs": {
"url": "https://github.com/agentage/agentkit/issues"
},
"homepage": "https://github.com/agentage/agentkit#readme",
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "8.57.0",
"@typescript-eslint/parser": "8.57.0",
"eslint": "9.39.4",
"jest": "30.3.0",
"ts-jest": "29.4.6",
"tsx": "4.21.0",
"typescript": "5.9.3"
}
}