-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.09 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
{
"name": "opencode-ace",
"version": "0.1.0",
"description": "Persistent learning plugin for AI coding assistants - inspired by the Agentic Context Engine",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"link": "npm link"
},
"keywords": [
"opencode",
"learning",
"ace",
"agent",
"memory",
"ai-assistant",
"persistent-learning"
],
"author": "Adarsh Y <adarshy1@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AdarshY1/opencode-ace.git"
},
"bugs": {
"url": "https://github.com/AdarshY1/opencode-ace/issues"
},
"homepage": "https://github.com/AdarshY1/opencode-ace#readme",
"dependencies": {
"ai": "^4.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.3.9",
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}