-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.69 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
{
"name": "mosfez-faust",
"version": "0.0.22",
"description": "Makes dynamic compilation of Faust on the web a little easier.",
"main": "./faust.js",
"keywords": [
"faust",
"wasm",
"grame"
],
"homepage": "https://github.com/dxinteractive/mosfez-faust",
"repository": {
"type": "git",
"url": "[email protected]:dxinteractive/mosfez-faust.git"
},
"bugs": {
"url": "https://github.com/dxinteractive/mosfez-faust/issues"
},
"author": "Damien Clarke <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16"
},
"scripts": {
"prep": "yarn && cd dev && yarn",
"build": "rm -rf dist && yarn rollup -c",
"test": "yarn jest",
"lint": "yarn eslint src",
"pretty": "yarn prettier --write .",
"prepare": "yarn build && rsync -vt dist/* .",
"postpublish": "rm -rf convert.* faust.* touch-start.* audio-source.* play.* run-in-iframe.* offline-render.* offline-render-dsp.*"
},
"devDependencies": {
"@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.78.0",
"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": [
"convert.*",
"faust.*",
"touch-start.*",
"audio-source.*",
"play.*",
"run-in-iframe.*",
"offline-render.*",
"offline-render-dsp.*",
"public"
]
}