-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.17 KB
/
package.json
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": "waveform-visualizer",
"version": "4.2.0",
"description": "(audio) waveform visualizer",
"keywords": [
"canvas",
"javascript",
"visualizer",
"waveform"
],
"homepage": "https://github.com/chrisweb/waveform-visualizer#readme",
"bugs": {
"url": "https://github.com/chrisweb/waveform-visualizer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisweb/waveform-visualizer.git"
},
"license": "MIT",
"author": "chrisweb <chris963@gmail.com> (https://chris.lu)",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"example": "examples"
},
"scripts": {
"build": "rollup -c ./scripts/dist.js",
"lint": "npx eslint src/**/* examples/simple-waveform/client/src**/* examples/simple-waveform/server/src**/*",
"watch": "rollup -cw ./scripts/dist.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"rollup": "4.13.2",
"rollup-plugin-typescript2": "0.36.0",
"typescript": "5.4.3"
},
"type": "module"
}