-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.47 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
{
"name": "opencode-agent-modes",
"version": "0.4.0",
"description": "OpenCode plugin to switch agent modes between performance and economy presets",
"module": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"private": false,
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/config",
"dist/modes",
"commands"
],
"repository": {
"type": "git",
"url": "git+https://github.com/j4rviscmd/opencode-agent-modes.git"
},
"homepage": "https://github.com/j4rviscmd/opencode-agent-modes#readme",
"bugs": {
"url": "https://github.com/j4rviscmd/opencode-agent-modes/issues"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "bun build src/index.ts --outdir dist --format esm --target bun && tsc -p tsconfig.build.json",
"lint": "bunx biome check .",
"format": "bunx biome format --write .",
"format:check": "bunx biome format .",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"prepublishOnly": "bun run build"
},
"keywords": ["opencode", "plugin", "agent", "mode", "switcher"],
"author": "j4rviscmd",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@opencode-ai/plugin": "^1.1.25",
"@opencode-ai/sdk": "^1.1.25",
"jsonc-parser": "^3.3.1"
}
}