-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.77 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.77 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
{
"name": "galdur",
"version": "1.1.0",
"description": "Galdur is an Obsidian plugin for running AI CLI tools in a sidebar terminal panel.",
"main": "main.js",
"scripts": {
"dev": "tsx build.ts --watch",
"build": "tsx build.ts --production",
"version:bump": "bumpp --quiet --configFilePath bump.config.ts --release",
"test": "node --import tsx --test tests/**/*.test.ts",
"test:watch": "node --import tsx --test --watch tests/**/*.test.ts",
"check": "tsc --noEmit --skipLibCheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"runtime:build:js": "tsx scripts/build-runtime-js.ts",
"runtime:build:exe": "tsx scripts/build-runtime-exe.ts",
"runtime:build:exe:x64": "tsx scripts/build-runtime-exe.ts --arch x64",
"runtime:build:exe:arm64": "tsx scripts/build-runtime-exe.ts --arch arm64",
"runtime:build:exe:all": "tsx scripts/build-runtime-exe.ts --arch all",
"runtime:version": "npm run runtime:build:js && node runtime/galdur-runtime.js --version",
"runtime:healthcheck": "npm run runtime:build:js && node runtime/galdur-runtime.js --healthcheck"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@yao-pkg/pkg": "^6.14.1",
"arg": "^5.0.2",
"builtin-modules": "^4.0.0",
"bumpp": "^10.4.1",
"esbuild": "^0.25.0",
"obsidian": "^1.8.7",
"prettier": "^3.8.1",
"tsx": "^4.20.6",
"typescript": "^5.8.2"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"extract-zip": "^2.0.1",
"node-pty": "^1.1.0",
"oxlint": "^1.51.0"
}
}