-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.07 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
{
"name": "@opencoven/coven-code",
"version": "0.0.4",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenCoven/coven-code.git"
},
"exports": {
".": "./src/sdk.mjs"
},
"bin": {
"coven-code": "bin/coven-code.mjs",
"coven-code-sdk": "bin/coven-code-sdk.mjs"
},
"files": [
"bin/",
"docs/",
"src/",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node --test test/cli.test.mjs test/commands.test.mjs test/config.test.mjs test/execute.test.mjs test/mcp.test.mjs test/permissions.test.mjs test/plugins-agent-events.test.mjs test/plugins-commands.test.mjs test/plugins-discovery.test.mjs test/plugins-tool-events.test.mjs test/sdk.test.mjs test/skills.test.mjs test/stream-json.test.mjs test/threads.test.mjs test/tools.test.mjs test/tui.test.mjs",
"start": "node ./bin/coven-code.mjs",
"coven-code": "node ./bin/coven-code.mjs",
"demo": "bash ./scripts/demo.sh"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"neo-blessed": "0.2.0"
}
}