-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.87 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
{
"name": "mosfez-synth",
"version": "0.0.8",
"description": "A microtonal-aware synth engine library for web.",
"keywords": [
"microtonal",
"xen",
"synth"
],
"homepage": "https://github.com/dxinteractive/mosfez-synth",
"repository": {
"type": "git",
"url": "[email protected]:dxinteractive/mosfez-synth.git"
},
"bugs": {
"url": "https://github.com/dxinteractive/mosfez-synth/issues"
},
"author": "Damien Clarke <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16"
},
"scripts": {
"prep": "yarn && yarn clean && cd demo && yarn",
"build": "rm -rf dist && yarn bundle-deps && yarn rollup -c",
"test": "yarn jest",
"lint": "yarn eslint src",
"pretty": "yarn prettier --write .",
"prepare": "yarn build && cp dist/* .",
"postpublish": "yarn clean",
"bundle-deps": "node scripts/bundle-deps.node.js",
"clean": "rm -f touch-start.* synth.* dsp-node.* faust.* params.* poly.* offline-render.* offline-render-synth-inner.stringify.*"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"esbuild": "^0.14.42",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.4",
"jest": "^28.1.0",
"prettier": "2.6.2",
"rollup": "^2.75.3",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-string": "^3.0.0",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"sideEffects": false,
"files": [
"touch-start.*",
"synth.*",
"dsp-node.*",
"faust.*",
"params.*",
"poly.*",
"offline-render.*",
"offline-render-synth-inner.stringify.*",
"public"
],
"dependencies": {
"mosfez-faust": "0.0.21"
}
}