-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpackage.json
62 lines (62 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
{
"name": "webpd",
"version": "1.0.0-alpha.12",
"type": "module",
"main": "./dist/WebPd/src/index.js",
"types": "./dist/src/index.d.ts",
"bin": {
"webpd": "./bin/cli.mjs"
},
"files": [
"bin/cli.mjs",
"dist",
"webpd.png"
],
"author": "Sébastien Piquemal <sebpiq@gmail.com>",
"description": "WebPd is a compiler for audio programming language Pure Data allowing to run .pd patches on web pages.",
"license": "LGPL-3.0",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sebpiq/WebPd"
},
"keywords": [
"sound",
"pure data",
"dsp"
],
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings --max-old-space-size=2048' npx jest --config node_modules/@webpd/dev/configs/jest.js",
"build:cli": "npx rollup --config configs/cli.rollup.js",
"build:dist": "npx rollup --config configs/dist.rollup.js",
"build:runtime": "npx rollup --config configs/runtime.rollup.js",
"build": "npm run clean; npm run build:runtime; npm run build:dist; npm run build:cli",
"clean": "rm -rf dist ; rm -rf bin"
},
"dependencies": {
"wavefile": "^11.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.4",
"@webpd/compiler": "file:../WebPd_compiler",
"@webpd/dev": "file:../WebPd_dev",
"@webpd/pd-parser": "file:../WebPd_pd-parser",
"@webpd/runtime": "file:../WebPd_runtime",
"assemblyscript": "^0.27.24",
"colors": "^1.4.0",
"commander": "^10.0.0",
"jest": "^29.4.3",
"rollup": "^3.18.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-visualizer": "^5.9.0",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0"
}
}