-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
45
46
{
"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 (https://chris.lu)",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"example": "examples"
},
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin typescript --configImportAttributesKey with",
"lint": "npx eslint src/**/* examples/simple-waveform/client/src**/* examples/simple-waveform/server/src**/*",
"lint-fix": "npx eslint src/**/* examples/simple-waveform/client/src**/* examples/simple-waveform/server/src**/* --fix"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "12.1.2",
"@types/node": "^22.13.13",
"@typescript-eslint/eslint-plugin": "8.27.0",
"@typescript-eslint/parser": "8.27.0",
"eslint": "9.23.0",
"eslint-plugin-import": "2.31.0",
"rollup": "4.37.0",
"typescript": "5.8.2"
},
"type": "module"
}