-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.49 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.49 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
67
{
"name": "papershelf",
"version": "1.9.0",
"productName": "PaperShelf",
"description": "A native-feeling Mac desktop app for searching arXiv, organizing research papers, annotating PDFs, and chatting with your paper library using RAG.",
"author": "Daniel Klevebring",
"main": "dist/main/main/index.js",
"scripts": {
"dev": "npm run build:main && concurrently -k -n main,renderer,electron -c blue,green,yellow \"npm run dev:main\" \"npm run dev:renderer\" \"npm run dev:electron\"",
"dev:main": "tsc -p tsconfig.main.json -w",
"dev:renderer": "vite",
"dev:electron": "wait-on tcp:5173 && electron .",
"build:main": "tsc -p tsconfig.main.json",
"build:renderer": "vite build",
"build": "npm run build:main && npm run build:renderer",
"postinstall": "npx @electron/rebuild --force",
"rebuild:node": "npm rebuild better-sqlite3",
"rebuild:electron": "npx @electron/rebuild --force",
"test": "npm run rebuild:node && (vitest run; TEST_EXIT=$?; npm run rebuild:electron; exit $TEST_EXIT)",
"test:watch": "npm run rebuild:node && vitest",
"test:e2e": "npm run rebuild:electron && npm run build && npx playwright test",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"screenshots": "npm run rebuild:electron && npm run build && npx tsx scripts/take-screenshots.ts",
"prepare": "husky"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"better-sqlite3": "^12.6.2",
"electron-log": "^5.4.3",
"electron-updater": "^6.8.3",
"fast-xml-parser": "^4.3.4",
"pdf-lib": "^1.17.1",
"pdf-parse": "^2.4.5",
"pdfjs-dist": "^4.8.69",
"turndown": "^7.2.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@electron/rebuild": "^4.0.3",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.1.18",
"@types/better-sqlite3": "^7.6.13",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/turndown": "^5.0.6",
"@vitejs/plugin-react": "^5.1.4",
"concurrently": "^8.2.2",
"electron": "^40.4.1",
"electron-builder": "^26.7.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"postcss": "^8.4.33",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.1.18",
"typescript": "~5.7.0",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"wait-on": "^7.2.0",
"zustand": "^5.0.11"
}
}