-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.39 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.39 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
63
64
65
66
67
{
"name": "gyoshu",
"version": "0.5.1",
"description": "Scientific research agent extension for OpenCode - turns research goals into reproducible Jupyter notebooks",
"type": "module",
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"bin": {
"gyoshu": "./bin/gyoshu.js"
},
"files": [
"src/",
"bin/"
],
"scripts": {
"test": "bun test ./tests",
"test:watch": "bun test --watch ./tests",
"test:python": "pytest tests/test_bridge.py -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yeachan-Heo/My-Jogyo.git"
},
"homepage": "https://github.com/Yeachan-Heo/My-Jogyo#readme",
"bugs": {
"url": "https://github.com/Yeachan-Heo/My-Jogyo/issues"
},
"author": "Yeachan Heo",
"license": "MIT",
"keywords": [
"opencode",
"opencode-plugin",
"claude",
"claude-code",
"claude-code-plugin",
"research",
"scientific",
"jupyter",
"repl",
"data-science",
"machine-learning",
"ai-agent",
"automation",
"notebook"
],
"engines": {
"bun": ">=1.0.0"
},
"os": [
"darwin",
"linux"
],
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/sanitize-html": "^2.16.0",
"bun-types": "latest"
},
"dependencies": {
"sanitize-html": "^2.17.0",
"zod": "^3.23.0"
}
}