-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.1 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.1 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
{
"name": "apexcode-plugin",
"version": "1.0.0",
"description": "ApexCode plugin for OpenCode — MemPalace memory, Repomap, KAIROS analysis, LM Studio auto-discovery, and multi-agent swarms",
"type": "module",
"main": "./dist/server.js",
"exports": {
"./server": {
"import": "./dist/server.js",
"default": "./dist/server.js"
}
},
"files": [
"dist"
],
"peerDependencies": {
"@opencode-ai/plugin": "*",
"@opentui/core": ">=0.1.97",
"@opentui/solid": ">=0.1.97"
},
"peerDependenciesMeta": {
"@opentui/core": {
"optional": true
},
"@opentui/solid": {
"optional": true
}
},
"devDependencies": {
"typescript": "^5.7.0",
"@types/bun": "latest"
},
"scripts": {
"build": "bun run scripts/build.ts",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"keywords": [
"opencode",
"plugin",
"apexcode",
"repomap",
"memoray",
"kairos",
"lm-studio",
"swarm"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apexcode-ai/apexcode-plugin"
}
}