-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.47 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
{
"name": "@frixaco/letui",
"version": "0.4.0",
"license": "MIT",
"files": [
"index.ts",
"src/**/*.ts"
],
"type": "module",
"module": "index.ts",
"scripts": {
"build-ffi": "cargo build --release --manifest-path core/Cargo.toml",
"build:anitrack-binary": "bun run scripts/build-anitrack-binary.ts",
"anki": "bun run build-ffi && bun run examples/anki.ts",
"anitrack": "bun run build-ffi && bun run examples/anitrack.ts",
"ai-agent": "bun run build-ffi && bun run examples/ai-agent.ts",
"file-search": "bun run build-ffi && bun run examples/fuzzy-file-search.ts",
"fmt": "oxfmt .",
"fmt-check": "oxfmt --check .",
"lint": "oxlint --ignore-pattern 'legacy/**' .",
"smoke": "bun run build-ffi && bun run scripts/smoke.ts",
"snake": "bun run build-ffi && bun run examples/snake.ts",
"typecheck": "bun x tsc -p tsconfig.check.json",
"visualizer": "bun run build-ffi && bun run examples/visualizer.ts",
"check:rust": "cargo check --manifest-path core/Cargo.toml",
"check": "bun run typecheck && bun run check:rust"
},
"devDependencies": {
"@ff-labs/fff-node": "^0.7.0",
"@types/bun": "^1.3.13",
"@types/node": "^24",
"@typescript/native-preview": "^7.0.0-dev.20260421.2",
"koffi": "^2.16.1",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0"
},
"optionalDependencies": {
"@frixaco/letui-darwin-arm64": "0.4.0",
"@frixaco/letui-linux-x64": "0.4.0",
"@frixaco/letui-win32-x64": "0.4.0"
}
}