-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 992 Bytes
/
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
{
"name": "waveform-path",
"version": "0.0.2",
"description": "Generator waveform paths for SVG",
"files": ["dist"],
"main": "./dist/waveform-path.umd.js",
"module": "./dist/waveform-path.es.js",
"exports": {
".": {
"import": "./dist/waveform-path.es.js",
"require": "./dist/waveform-path.umd.js"
}
},
"scripts": {
"dev": "vite --host",
"build": "vite build && cp dist/waveform-path.es.js docs/waveform-path.min.js",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jerosoler/waveform-path.git"
},
"keywords": [
"waveform",
"path",
"svg",
"audio-visualizer",
"audio",
"webaudio",
"audio-player",
"music"
],
"author": "Jero Soler",
"license": "MIT",
"bugs": {
"url": "https://github.com/jerosoler/waveform-path/issues"
},
"homepage": "https://github.com/jerosoler/waveform-path#readme",
"devDependencies": {
"vite": "^5.4.9"
}
}