-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.66 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.66 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
{
"name": "recs",
"version": "0.2.0",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"build": "bun build ./bin/recs.ts --compile --outfile=./bin/recs",
"test": "bun test",
"test:e2e": "RUN_E2E=1 bun test tests/explorer/e2e/",
"bench": "bun tests/perf/run.ts",
"lint": "bunx oxlint src/ tests/ bin/ scripts/ && bun scripts/check-no-private.ts",
"typecheck": "tsc --noEmit",
"prepare": "lefthook install",
"check-docs": "bun scripts/check-docs.ts",
"generate-manpages": "bun scripts/generate-manpages.ts",
"generate-docs": "bun scripts/generate-reference-docs.ts",
"docs:dev": "bun scripts/generate-reference-docs.ts && vitepress dev docs",
"docs:build": "bun scripts/generate-reference-docs.ts && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "latest",
"@types/oracledb": "^6.10.1",
"@types/papaparse": "^5.5.2",
"@types/pg": "^8.16.0",
"lefthook": "^2.1.1",
"oxlint": "latest",
"typescript": "^5",
"vitepress": "^1.6.4"
},
"dependencies": {
"@types/react": "^19.2.14",
"better-sqlite3": "^12.6.2",
"chrono-node": "^2.9.0",
"exceljs": "^4.4.0",
"fast-xml-parser": "^5.3.7",
"ink": "^6.8.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"mongodb": "^7.1.0",
"mysql2": "^3.18.0",
"nanoid": "^5.1.6",
"openai": "^6.22.0",
"oracledb": "^6.10.0",
"papaparse": "^5.5.3",
"pg": "^8.18.0",
"react": "^19.2.4",
"string-width": "^8.2.0",
"woothee": "^1.11.1"
}
}