-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 948 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 948 Bytes
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
{
"name": "cricknote",
"version": "0.1.0",
"description": "Scientific research assistant for Obsidian",
"type": "module",
"bin": {
"cricknote": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js start",
"setup": "node dist/cli.js setup",
"reindex": "node dist/cli.js reindex",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"better-sqlite3": "^11.7.0",
"chrono-node": "^2.7.0",
"commander": "^13.0.0",
"diff": "^7.0.0",
"gray-matter": "^4.0.3",
"inquirer": "^12.0.0",
"pdf-parse": "^1.1.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/diff": "^6.0.0",
"@types/node": "^22.0.0",
"@types/pdf-parse": "^1.1.5",
"@types/ws": "^8.5.13",
"esbuild": "^0.24.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}