-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 3.22 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 3.22 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
{
"name": "jot-cli",
"version": "0.8.3",
"module": "src/index.ts",
"bin": {
"jot": "src/index.ts"
},
"scripts": {
"dev": "DEV=true bun run ./src/index.ts",
"check": "biome check . && tsc --noEmit",
"check:fix": "biome check --write && tsc --noEmit",
"compile": "bun build --compile --minify --sourcemap src/index.ts --outfile bin/jot",
"compile:prepare": "bun install --os=\"*\" --cpu=\"*\" @opentui/core@0.1.74",
"compile:release": "bun run compile:prepare && bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:windows-x64 && bun run compile:macos-arm64 && bun run compile:macos-x64",
"compile:linux-x64": "bun build --compile --minify --sourcemap --define process.platform='\"linux\"' --define process.arch='\"x64\"' src/index.ts --outfile bin/jot-linux-x64 --target=bun-linux-x64",
"compile:linux-arm64": "bun build --compile --minify --sourcemap --define process.platform='\"linux\"' --define process.arch='\"arm64\"' src/index.ts --outfile bin/jot-linux-arm64 --target=bun-linux-arm64",
"compile:windows-x64": "bun build --compile --minify --sourcemap --define process.platform='\"win32\"' --define process.arch='\"x64\"' src/index.ts --outfile bin/jot-windows-x64.exe --target=bun-windows-x64",
"compile:macos-arm64": "bun build --compile --minify --sourcemap --define process.platform='\"darwin\"' --define process.arch='\"arm64\"' src/index.ts --outfile bin/jot-macos-arm64 --target=bun-darwin-arm64",
"compile:macos-x64": "bun build --compile --minify --sourcemap --define process.platform='\"darwin\"' --define process.arch='\"x64\"' src/index.ts --outfile bin/jot-macos-x64 --target=bun-darwin-x64"
},
"type": "module",
"dependencies": {
"@ai-sdk/openai-compatible": "^2.0.26",
"@clack/prompts": "^0.11.0",
"@effect/cli": "^0.73.0",
"@effect/platform": "^0.94.1",
"@effect/platform-bun": "^0.87.0",
"@openrouter/ai-sdk-provider": "^1.5.4",
"@opentui-ui/dialog": "^0.1.2",
"@opentui/core": "0.1.74",
"@opentui/react": "^0.1.73",
"@types/turndown": "^5.0.6",
"ai": "^6.0.39",
"cli-highlight": "^2.1.11",
"dedent": "^1.7.1",
"diff": "^8.0.3",
"effect": "^3.19.14",
"htmlrewriter": "^0.0.13",
"ignore": "^7.0.5",
"marked": "^16.4.2",
"marked-terminal": "^7.3.0",
"react": "^19.2.3",
"turndown": "^7.2.2",
"unpdf": "^1.4.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@effect/language-service": "^0.66.1",
"@opentui/core-linux-x64": "0.1.74",
"@opentui/core-linux-arm64": "0.1.74",
"@opentui/core-win32-x64": "0.1.74",
"@opentui/core-darwin-arm64": "0.1.74",
"@opentui/core-darwin-x64": "0.1.74",
"@total-typescript/ts-reset": "^0.6.1",
"@total-typescript/tsconfig": "^1.0.4",
"@tsconfig/bun": "^1.0.10",
"@types/bun": "1.3.6",
"@types/diff": "^8.0.0",
"@types/json-schema": "^7.0.15",
"@types/react": "^19.2.8",
"react-devtools-core": "^7.0.1"
},
"peerDependencies": {
"typescript": "^5.9.3"
}
}