forked from tambien/Piano
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.17 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.17 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
{
"name": "d-piano",
"version": "1.1.0",
"description": "Web Audio instrument using Salamander Grand Piano samples",
"repository": {
"url": "git+https://github.com/d-buckner/piano.git"
},
"main": "build/index.js",
"type": "module",
"types": "build/index.d.ts",
"scripts": {
"build": "vite build",
"demo": "vite --config vite.demo.config.ts",
"prepare": "npm run build",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"files": [
"README.md",
"LICENSE",
"build"
],
"author": "d-bucker",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.0.4",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@vitest/ui": "^3.2.4",
"eslint": "^9.29.0",
"eslint-plugin-import": "^2.32.0",
"happy-dom": "^18.0.1",
"tone": "^15.1.22",
"typescript": "^5.8.3",
"vite": "^7.0.0",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"peerDependencies": {
"tone": "^15.1.22"
},
"keywords": [
"Web Audio",
"Tone.js",
"Piano",
"Sampler"
],
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.44.2"
}
}