forked from dzannotti/junox
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 2.02 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
{
"name": "junox.js",
"version": "0.3.0",
"license": "GPL-3.0-or-later",
"description": "Library for adding Juno60 synthesizer sounds to web applications (using Web Audio API)",
"main": "dist/synth.node.js",
"module": "dist/synth.node.mjs",
"jsnext:main": "dist/synth.node.mjs",
"repository": "github:pendragon-andyh/junox",
"homepage": "https://github.com/pendragon-andyh/junox",
"bugs": "https://github.com/pendragon-andyh/junox/issues",
"author": "Andy Harman <andyh.at.pendragon@gmail.com>",
"contributors": [
{
"name": "Daniele Zannotti"
}
],
"files": [
"dist/"
],
"scripts": {
"start": "esbuild --servedir=. --serve=8000",
"build-dev": "npm run build:processor && npm run build:module",
"build-prod": "npm run build:patches && npm run build:pretty && npm run lint && npm run build:processor && npm run build:module && npm run build:iife && npm run test",
"build:processor": "esbuild --bundle --outfile=dist/synth.worklet.txt --format=esm ./src/synth.worklet.js",
"build:module": "esbuild --bundle --outfile=dist/synth.node.mjs --format=esm --loader:.txt=dataurl ./src/synth.node.js",
"build:iife": "esbuild --bundle --outfile=dist/synth.node.js --format=iife --global-name=Junox ./dist/synth.node.mjs",
"build:patches": "node patches/Juno60.js",
"build:pretty": "prettier --write src",
"lint": "eslint .",
"test": "uvu tests",
"deploy:bump-version": "npm version patch",
"deploy:npm": "echo \"TODO - implement https://zellwk.com/blog/publish-to-npm/\"",
"deploy:github": "gh-pages --dist .",
"yarn:install": "yarn install",
"yarn:install-force": "yarn install --force",
"yarn:upgrade-latest": "yarn upgrade-interactive --latest",
"yarn:audit": "yarn audit"
},
"dependencies": {},
"devDependencies": {
"csv-parser": "^3.0.0",
"esbuild": "^0.12.8",
"eslint": "^7.28.0",
"gh-pages": "^5.0.0",
"prettier": "^2.3.1",
"uvu": "^0.5.1"
},
"resolutions": {
"**/lodash": "4.17.21",
"**/minimist": "^1.2.0"
}
}