-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.86 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "superwhisper-analytics",
"version": "0.3.0",
"description": "Local Mac desktop app for visualising SuperWhisper recording history",
"main": "./out/main/index.js",
"author": {
"name": "August Cayzer",
"email": "hello@cyzr.me",
"url": "https://cyzr.me"
},
"license": "MIT",
"private": false,
"homepage": "https://github.com/aicayzer/superwhisper-analytics",
"repository": {
"type": "git",
"url": "git+https://github.com/aicayzer/superwhisper-analytics.git"
},
"bugs": {
"email": "hello@cyzr.me",
"url": "https://github.com/aicayzer/superwhisper-analytics/issues"
},
"keywords": [
"superwhisper",
"analytics",
"electron",
"macos",
"transcription",
"voice-dictation"
],
"engines": {
"node": ">=20.0.0",
"pnpm": ">=11.0.0"
},
"packageManager": "pnpm@11.0.9",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "pnpm run typecheck:node && pnpm run typecheck:web",
"test": "vitest run",
"test:watch": "vitest",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "pnpm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "pnpm run build && electron-builder --dir",
"build:mac": "electron-vite build && electron-builder --mac"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@radix-ui/react-slot": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"debug": "^4.4.3",
"electron-updater": "^6.8.3",
"lucide-react": "^1.14.0",
"ms": "^2.1.3",
"radix-ui": "^1.4.3",
"react-day-picker": "^10.0.0",
"react-router-dom": "^7.1.5",
"recharts": "^3.2.1",
"tailwind-merge": "^3.6.0",
"zustand": "^5.0.13"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^22.19.19",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"electron": "^42.0.1",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"jsdom": "^29.1.1",
"prettier": "^3.7.4",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwindcss": "^4.3.0",
"typescript": "^5.9.3",
"vite": "^7.3.3",
"vitest": "^3.2.4"
}
}