-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.7 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.7 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
{
"name": "sid-note",
"version": "1.0.0",
"private": true,
"description": "Web application for viewing and presenting bass fingering with more specific notation than TAB",
"author": "kako-jun",
"license": "MIT",
"homepage": "https://sid-note.llll-ll.com",
"repository": {
"type": "git",
"url": "https://github.com/kako-jun/sid-note.git"
},
"bugs": {
"url": "https://github.com/kako-jun/sid-note/issues"
},
"keywords": [
"bass",
"music-theory",
"fingering",
"fretboard",
"nextjs",
"typescript"
],
"scripts": {
"wasm:ensure-rust": "which rustup || (unset RUSTUP_VERSION && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable && . $HOME/.cargo/env && rustup target add wasm32-unknown-unknown)",
"wasm:install": ". $HOME/.cargo/env 2>/dev/null; which wasm-pack || cargo install wasm-pack --locked",
"dev": "next dev",
"build": "next build",
"build:cloudflare": "./scripts/cloudflare-build.sh",
"start": "next start",
"lint": "next lint",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"js-yaml": "^4.1.0",
"next": "^15.3.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sid-fret": "file:../sid-fret/pkg",
"zod": "^3.25.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@jest/globals": "^29.7.0",
"@tailwindcss/postcss": "^4",
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"jest": "^29.7.0",
"tailwindcss": "^4",
"ts-jest": "^29.4.5",
"typescript": "^5"
}
}