-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.26 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.26 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
{
"name": "keystrum",
"version": "0.1.0",
"description": "A browser-based keyboard instrument. Four rows, six chords, real strum detection. Karplus-Strong synthesis in Web Audio.",
"homepage": "https://keystrum.app",
"repository": {
"type": "git",
"url": "https://github.com/kimhinton/keystrum.git"
},
"license": "MIT",
"keywords": [
"qwerty-instrument",
"browser-guitar",
"guitar-chord-practice",
"chord-trainer",
"karplus-strong",
"web-audio-synthesis",
"web-audio",
"strum",
"keyboard-instrument",
"music",
"nextjs"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"cap:sync": "pnpm --filter @keystrum/native-app build && npx cap sync",
"cap:android": "pnpm cap:sync && npx cap open android",
"cap:ios": "pnpm cap:sync && npx cap open ios",
"android:build-aab": "pnpm cap:sync && cd android && ./gradlew bundleRelease",
"android:build-apk": "pnpm cap:sync && cd android && ./gradlew assembleRelease"
},
"dependencies": {
"@capacitor/android": "^6.1.2",
"@capacitor/app": "^6.0.3",
"@capacitor/core": "^6.1.2",
"@capacitor/filesystem": "^6.0.4",
"@capacitor/haptics": "^6.0.3",
"@capacitor/ios": "^6.1.2",
"@capacitor/keyboard": "^6.0.4",
"@capacitor/preferences": "^6.0.4",
"@capacitor/share": "^6.0.3",
"@capacitor/splash-screen": "^6.0.3",
"@capacitor/status-bar": "^6.0.3",
"@keystrum/layout": "workspace:*",
"@keystrum/synth": "workspace:*",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.8.0",
"next": "16.2.4",
"radix-ui": "^1.4.3",
"react": "19.2.5",
"react-dom": "19.2.4",
"shadcn": "^4.2.0",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.2",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^6.1.2",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"ffmpeg-static": "^5.3.0",
"playwright": "^1.59.1",
"sharp": "^0.34.5",
"tailwindcss": "^4",
"typescript": "^5"
}
}