-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.06 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
{
"name": "openacp-cowork",
"version": "1.0.9",
"description": "Multi-agent coordination layer built on top of OpenACP",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"openacp",
"openacp-plugin",
"cowork",
"multi-agent"
],
"repository": {
"type": "git",
"url": "https://github.com/Open-ACP/OpenACP-Cowork"
},
"engines": {
"node": ">=20",
"openacp": ">=2026.0326.0"
},
"peerDependencies": {
"@openacp/cli": ">=2026.0326.0"
},
"dependencies": {
"nanoid": "^5.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@openacp/cli": "file:../OpenACP",
"@types/node": "^22.0.0",
"tsup": "^8.5.1",
"typescript": "^5.9.0",
"vitest": "^3.0.0"
}
}