-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.93 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.93 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
55
56
57
58
59
60
61
62
{
"name": "@dynatrace-oss/opencode-coder",
"version": "0.36.2",
"description": "OpenCode plugin for story-driven development with agents and commands",
"author": "Dynatrace OSS",
"repository": {
"type": "git",
"url": "git+https://github.com/dynatrace-oss/opencode-coder.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"type": "module",
"main": "dist/opencode-coder.js",
"exports": {
".": {
"import": "./dist/opencode-coder.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "bun build src/index.ts --outfile dist/opencode-coder.js --target bun",
"dev": "bun --watch src/index.ts",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"test:e2e": "bun run build && bun run test:e2e:raw",
"test:e2e:raw": "bun test tests/e2e --bail=1 --timeout 60000",
"test:manual": "bun run scripts/manual-test/index.ts --",
"validate:isolated-pins": "bun run scripts/validate-isolated-pins.ts",
"clean:e2e-artifacts": "rm -rf tests/e2e/.artifacts",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"clean": "rm -rf dist",
"prepublishOnly": "bun run build",
"typecheck": "bun x tsc --noEmit",
"opencode:dev": "bun run build && opencode --log-level DEBUG",
"logs": "bun run scripts/log-analyzer/index.ts",
"logs:processes": "bun run scripts/log-analyzer/index.ts list processes",
"logs:sessions": "bun run scripts/log-analyzer/index.ts list sessions",
"diagnostics:collect": "bun run scripts/collect-diagnostics/index.ts"
},
"keywords": [
"opencode",
"plugin",
"ai",
"coding-assistant"
],
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"@opencode-ai/plugin": "^1.3.17",
"yaml": "^2.8.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"typescript": "^6.0.2"
}
}