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{
"name": "obsidian-btw",
"version": "0.0.2",
"private": true,
"description": "turn your obsidian into an ide",
"type": "module",
"main": "main.js",
"scripts": {
"dev": "bun run build.ts --watch",
"build": "bun run build.ts",
"typecheck": "tsc --noEmit",
"fix": "oxfmt app build.ts release.ts --write && oxlint app build.ts release.ts --fix && tsc --noEmit",
"release": "bun run release.ts",
"prepare": "husky"
},
"dependencies": {
"@xterm/addon-fit": "0.10.0",
"@xterm/addon-webgl": "0.18.0",
"@xterm/xterm": "5.5.0",
"node-pty": "^1.1.0",
"obsidian": "^1.11.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.0.3",
"electron-rebuild": "^3.2.9",
"husky": "^9.1.7",
"oxfmt": "^0.20.0",
"oxlint": "^1.35.0",
"typescript": "^5.0.0"
}
}