-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.69 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
68
69
{
"name": "opencode-ipynb",
"version": "0.1.2",
"description": "OpenCode community plugin that adds robust .ipynb (Jupyter Notebook) support: inspect, read, edit, run, outputs, clean, export, reproducibility reports, and warm kernels.",
"type": "module",
"packageManager": "bun@1.3.13",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Restodecoca/opencode-ipynb.git"
},
"homepage": "https://github.com/Restodecoca/opencode-ipynb",
"bugs": {
"url": "https://github.com/Restodecoca/opencode-ipynb/issues"
},
"files": [
"dist",
"python/ipynb_runner.py",
"python/requirements.txt",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.3.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "bun build src/index.ts --target=bun --outdir=dist && tsc --emitDeclarationOnly --outDir dist",
"test": "bun test",
"lint:effect": "tsc --noEmit",
"prepare:effect-lsp": "effect-language-service patch"
},
"keywords": [
"opencode",
"plugin",
"jupyter",
"ipynb",
"notebook",
"effect",
"typescript"
],
"license": "MIT",
"peerDependencies": {
"@opencode-ai/plugin": ">=0.0.0"
},
"dependencies": {
"@opencode-ai/plugin": "latest",
"diff": "^7.0.0",
"effect": "^3.10.0",
"zod": "4"
},
"devDependencies": {
"@effect/language-service": "^0.86.2",
"@types/bun": "latest",
"@types/diff": "7.0.0",
"typescript": "^5.6.0"
}
}