forked from keithwhor/wavtools
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 804 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 804 Bytes
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
{
"name": "wavtools",
"version": "0.1.5",
"description": "Record and stream WAV audio data in the browser across all platforms",
"main": "index.js",
"types": "./dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/keithwhor/wavtools.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "npx tsc && npx esbuild index.js --bundle --outfile=script/wavtools.js --format=iife && npx esbuild index.js --bundle --minify --outfile=script/wavtools.min.js --format=iife"
},
"keywords": [
"Wavtools",
"WAV",
"Audio",
"Browser"
],
"author": "Keith Horwoood <[email protected]>",
"license": "MIT",
"devDependencies": {
"esbuild": "^0.24.0",
"typescript": "^5.6.3"
}
}