-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.85 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.85 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
{
"name": "wavearea",
"version": "1.1.0",
"description": "Edit audio in textarea",
"main": "index.js",
"scripts": {
"start": "esbuild ./src/wavearea.js ./src/worker.js --bundle --splitting --sourcemap --loader:.svg=text --loader:.html=text --loader:.woff2=file --format=esm --outdir=dist --servedir=. --external:@audio/aiff-decode --external:@audio/caf-decode --external:@audio/webm-decode --external:@audio/amr-decode --external:@audio/wma-decode --out-extension:.js=.js --entry-names=[name]",
"build": "rm -rf ./dist/* && esbuild ./src/wavearea.js ./src/worker.js --bundle --splitting --minify --sourcemap --loader:.svg=text --loader:.html=text --loader:.woff2=file --format=esm --outdir=dist --external:@audio/aiff-decode --external:@audio/caf-decode --external:@audio/webm-decode --external:@audio/amr-decode --external:@audio/wma-decode --entry-names=[name]",
"test": "node test/unit/selection.test.js && node test/unit/adapter.test.js && node test/unit/store.test.js && npx playwright test",
"test:unit": "node test/unit/selection.test.js && node test/unit/adapter.test.js && node test/unit/store.test.js",
"test:e2e": "npx playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/audio-lab/wavearea.git"
},
"keywords": [
"audio",
"web-audio",
"waveform",
"dsp",
"wave player",
"audio player",
"audio edit"
],
"author": "Dmitry Iv <dfcreative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audio-lab/wavearea/issues"
},
"homepage": "https://github.com/audio-lab/wavearea#readme",
"dependencies": {
"@audio/aac-decode": "^1.0.1",
"audio-decode": "^3.1.3",
"comlink": "^4.4.2",
"sprae": "^13.1.1",
"wavefont": "^3.5.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"esbuild": "^0.16.12",
"tst": "^9.2.2"
}
}