forked from naomiaro/waveform-playlist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.91 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "waveform-playlist",
"description": "Multiple track web audio editor and player with waveform preview",
"version": "4.3.3",
"main": "build/waveform-playlist.umd.js",
"author": "Naomi Aro",
"license": "MIT",
"website": "http://naomiaro.github.io",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"ajv": "^8.9.0",
"babel-loader": "^8.2.3",
"gh-pages": "^3.2.3",
"mkdirp": "^1.0.4",
"parallel-webpack": "^2.6.0",
"prettier": "2.3.2",
"sass": "^1.50.0",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3"
},
"directories": {
"build": "build",
"lib": "lib",
"css": "styles"
},
"dependencies": {
"@babel/runtime": "^7.17.2",
"event-emitter": "^0.3.4",
"fade-curves": "^1.0.2",
"fade-maker": "^1.0.3",
"inline-worker": "^1.1.0",
"lodash.assign": "^4.0.0",
"lodash.defaultsdeep": "^4.6.1",
"lodash.forown": "^4.0.0",
"tone": "^14.7.77",
"uuid": "^8.3.2",
"virtual-dom": "^2.1.1",
"webaudio-peaks": "^1.0.0"
},
"scripts": {
"clean": "rm -Rf dist && rm -Rf lib && rm -Rf build && rm -Rf styles",
"styles": "mkdirp styles && cp ghpages/scss/_playlist.scss styles/playlist.scss && sass styles/",
"jekyll:scss": "mkdirp dist/waveform-playlist/css/ && sass ghpages/scss/:dist/waveform-playlist/css/ --watch &",
"jekyll": "jekyll build -s ghpages -d dist/waveform-playlist && mkdirp dist/waveform-playlist/css/ && sass ghpages/scss/:dist/waveform-playlist/css/",
"jekyll:dev": "jekyll build -s ghpages -d dist/waveform-playlist --watch &",
"ghpages": "gh-pages --repo https://[email protected]/naomiaro/waveform-playlist.git -d dist/waveform-playlist",
"build": "npm run clean && npm run jekyll && webpack",
"preversion": "npm run clean",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags",
"prepare": "npm run compile && npm run styles && npm run webpack:unpkg",
"compile": "babel src --out-dir lib",
"webpack:unpkg": "webpack --config webpack.config.unpkg.js",
"webpack:server": "webpack serve --static dist/ --color --host 0.0.0.0 --config webpack.config.dev.js",
"start": "npm run webpack:server",
"dev": "npm run jekyll:dev && npm run jekyll:scss && npm run webpack:server",
"website": "npm run build && npm run ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/naomiaro/waveform-playlist.git"
},
"keywords": [
"waveform",
"audio",
"audacity",
"stem",
"tracks",
"multitrack",
"playlist",
"music",
"editor",
"record",
"recording",
"player",
"webaudio"
],
"bugs": {
"url": "https://github.com/naomiaro/waveform-playlist/issues"
},
"homepage": "http://naomiaro.github.io/waveform-playlist"
}