-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.67 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
{
"name": "stacks",
"version": "0.5.1",
"private": true,
"description": "A modern research library and AI reading workspace inspired by PaperCLI.",
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"dev": "next dev --hostname 127.0.0.1",
"build": "next build",
"start": "next start --hostname 127.0.0.1",
"test": "npm run build && node --test \"tests/**/*.test.mjs\" && node --import tsx --test \"tests/**/*.test.ts\"",
"lint": "eslint . --ignore-pattern dist --ignore-pattern .next",
"audit:colors": "node scripts/generate-color-audit.mjs",
"release": "node scripts/release.mjs prepare"
},
"dependencies": {
"@fontsource-variable/geist": "^5.3.0",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"better-sqlite3": "^12.11.1",
"class-variance-authority": "^0.7.1",
"drizzle-orm": "0.45.2",
"hast-util-to-jsx-runtime": "^2.3.6",
"katex": "^0.16.47",
"lowlight": "^3.3.0",
"lucide-react": "^0.468.0",
"mermaid": "^11.16.1",
"next": "16.2.6",
"playwright": "^1.61.1",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^3.6.0",
"unpdf": "^1.6.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "4.2.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "22.19.19",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"eslint": "9.39.4",
"eslint-config-next": "16.2.6",
"tailwindcss": "4.2.1",
"tsx": "^4.22.1",
"typescript": "5.9.3"
},
"type": "module"
}