-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.73 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": "dot-audio",
"description": "A simple web audio library for making synthesizers",
"version": "0.3.2",
"license": "MIT",
"author": "Kyle Shanks <[email protected]>",
"main": "dist/bundle.js",
"homepage": "https://dot-docs.netlify.app/",
"files": [
"README.md",
"src",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Kyle-Shanks/Dot"
},
"keywords": [
"Web Audio",
"Web Audio API",
"Synth",
"Synthesizer"
],
"scripts": {
"build": "webpack --mode=production",
"build-docs": "yarn build-node-docs && yarn build-util-docs && yarn build-input-docs",
"build-input-docs": "documentation build src/input -o docs/inputData.json",
"build-node-docs": "yarn build-component-docs && yarn build-core-docs && yarn build-effect-docs && yarn build-instrument-docs && yarn build-source-docs",
"build-util-docs": "documentation build src/util/util.js -o docs/utilData.json",
"build-component-docs": "documentation build src/nodes/components -o docs/componentsData.json",
"build-core-docs": "documentation build src/nodes/core -o docs/coreData.json",
"build-effect-docs": "documentation build src/nodes/effects -o docs/effectsData.json",
"build-instrument-docs": "documentation build src/nodes/instruments -o docs/instrumentsData.json",
"build-source-docs": "documentation build src/nodes/sources -o docs/sourcesData.json",
"prepublishOnly": "yarn build",
"start": "webpack --watch --mode=development"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"babel-loader": "^8.2.2",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0"
}
}