-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 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
{
"name": "opencode-interpreters-plugin",
"version": "SET_FROM_GIT_TAG",
"description": "Opencode plugin providing interpreters as tools",
"type": "module",
"exports": {
"./server": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun build src/index.ts --target bun --outfile dist/index.js",
"typecheck": "tsc --noEmit",
"dev": "bun --watch src/index.ts",
"test": "bun test",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"format": "biome format .",
"format:fix": "biome format --write ."
},
"dependencies": {
"@opencode-ai/plugin": "^1.14.0",
"@opencode-ai/sdk": "^1.15.1",
"xdg-basedir": "^5.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@tsconfig/bun": "1.0.9",
"@types/bun": "1.3.14",
"@types/node": "24.12.2",
"typescript": "^5.9.3"
},
"keywords": [
"opencode",
"plugin",
"shell",
"tools",
"bash",
"interpreter",
"python"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/saksmt/opencode-interpreters-plugin.git"
},
"author": {
"name": "Kirill Saksin",
"email": "smt@saksmt.dev",
"url": "https://saksmt.dev"
},
"readme": "./README.md"
}