-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
package.json
File metadata and controls
59 lines (59 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
{
"name": "agentkit",
"version": "0.0.1",
"private": true,
"description": "AgentKit monorepo - AI agent framework and SDK",
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "npm run build -w @agentage/core && npm run build -w @agentage/platform",
"type-check": "tsc -b",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"format": "npm run format --workspaces --if-present",
"format:check": "npm run format:check --workspaces --if-present",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "npm run clean --workspaces --if-present",
"verify": "npm run type-check && npm run lint && npm run format:check && npm run test && npm run build"
},
"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/node": "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"
}
}