-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 894 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 894 Bytes
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": "opencode-ddev",
"version": "1.1.0",
"type": "module",
"description": "Adds context about ddev setup and improves command calling",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/JUVOJustin/opencode-ddev.git"
},
"keywords": [
"opencode",
"ddev"
],
"author": "Justin Vogt",
"license": "MIT",
"bugs": {
"url": "https://github.com/JUVOJustin/opencode-ddev-plugin/issues"
},
"homepage": "https://github.com/JUVOJustin/opencode-ddev-plugin#readme",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.1.56"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.1.56",
"@types/node": "^24.10.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@opencode-ai/sdk": "^1.1.56"
}
}