-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.45 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.45 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
{
"name": "@butttons/obi",
"version": "0.0.3",
"module": "src/index.ts",
"type": "module",
"description": "Read-only CLI for Obsidian vaults. Structured data for LLM consumption.",
"bin": {
"obi": "./dist/index.js"
},
"files": [
"dist/index.js",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/butttons/obi"
},
"author": {
"name": "butttons"
},
"license": "MIT",
"scripts": {
"test": "bun test ./src/",
"type-check": "tsc",
"build": "bun build src/index.ts --compile --outfile dist/obi",
"build:npm": "bun build src/index.ts --outfile dist/index.js --target bun",
"build:linux": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile dist/obi-linux-x64",
"build:macos": "bun build src/index.ts --compile --target=bun-darwin-x64 --outfile dist/obi-darwin-x64",
"build:macos-arm": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile dist/obi-darwin-arm64",
"build:windows": "bun build src/index.ts --compile --target=bun-windows-x64 --outfile dist/obi-windows-x64.exe",
"build:all": "bun run build:linux && bun run build:macos && bun run build:macos-arm && bun run build:windows"
},
"dependencies": {
"@toon-format/toon": "^2.1.0",
"commander": "^14.0.3",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}