-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.05 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
{
"name": "note-by-note",
"description": "Practice music with pitch, speed, loops, and snippets on any audio or video.",
"private": true,
"license": "GPL-2.0-or-later",
"version": "1.0.2",
"type": "module",
"author": "Patrick Demichiel",
"repository": {
"type": "git",
"url": "git+https://github.com/patrickiel/note-by-note.git"
},
"homepage": "https://github.com/patrickiel/note-by-note#readme",
"bugs": {
"url": "https://github.com/patrickiel/note-by-note/issues"
},
"keywords": [
"browser-extension",
"chrome-extension",
"music-practice",
"pitch-shifting",
"time-stretching",
"web-audio",
"audioworklet",
"rubberband",
"chord-detection",
"wxt",
"svelte"
],
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.7.0",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test:dsp": "node --test \"src/features/**/*.test.ts\"",
"test:e2e": "node e2e/run.mjs",
"release": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/release.ps1",
"release:dry": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/release.ps1 -DryRun",
"postinstall": "node scripts/copy-rubberband-wasm.mjs && node scripts/build-rubberband-worklet.mjs && node scripts/build-vocal-worklet.mjs && node scripts/build-pcm-tap-worklet.mjs && wxt prepare"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@tsconfig/svelte": "^5.0.8",
"@wxt-dev/module-svelte": "^2.0.4",
"esbuild": "^0.28.1",
"puppeteer-core": "^25.3.0",
"svelte": "^5.53.7",
"svelte-check": "^4.4.4",
"tailwindcss": "^4.3.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"wxt": "^0.20.27"
},
"dependencies": {
"@echogarden/rubberband-wasm": "^0.2.0",
"@lucide/svelte": "^1.24.0",
"@webext-core/messaging": "^3.0.2",
"onnxruntime-web": "^1.27.0"
}
}