-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.63 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
{
"name": "mindmaps",
"version": "0.1.0",
"description": "A mindmap tool that runs entirely in your browser — no account, works offline, no server, no tracking.",
"license": "MIT",
"author": "Kundan Singh",
"homepage": "https://mindmaps.kundansingh.me",
"repository": {
"type": "git",
"url": "git+https://github.com/ksh7/mindmaps.git"
},
"bugs": {
"url": "https://github.com/ksh7/mindmaps/issues"
},
"keywords": [
"mindmap",
"local-first",
"offline",
"indexeddb",
"react",
"typescript"
],
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && vite build --ssr src/prerender.tsx --outDir dist-ssr && node scripts/prerender.mjs",
"build:spa": "tsc && vite build",
"verify": "node scripts/verify-dist.mjs",
"preview": "vite preview",
"typecheck": "tsc",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@fontsource-variable/fraunces": "^5.1.0",
"@fontsource/karla": "^5.1.0",
"nanoid": "^5.0.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.18.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"fake-indexeddb": "^6.2.5",
"jsdom": "^30.0.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vitest": "^3.2.7"
}
}