-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.19 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
{
"name": "@morphllm/opencode-morph-plugin",
"version": "2.0.9",
"description": "OpenCode plugin for Morph SDK - fast apply, WarpGrep codebase search",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"instructions/"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "bun test",
"typecheck": "tsc --noEmit -p tsconfig.json",
"ci": "bun test && bun run build && bun run typecheck"
},
"dependencies": {
"@morphllm/morphsdk": "0.2.160",
"@opencode-ai/plugin": "latest",
"@opencode-ai/sdk": "^1.2.22"
},
"devDependencies": {
"bun-types": "latest",
"typescript": "^5.0.0"
},
"keywords": [
"opencode",
"plugin",
"morph",
"fast-apply",
"warpgrep",
"code-search",
"code-editing"
],
"author": "Morph",
"repository": {
"type": "git",
"url": "https://github.com/morphllm/opencode-morph-plugin.git"
},
"bugs": {
"url": "https://github.com/morphllm/opencode-morph-plugin/issues"
},
"homepage": "https://github.com/morphllm/opencode-morph-plugin#readme",
"license": "MIT"
}