-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.68 KB
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
{
"name": "p5.sound",
"version": "0.4.1",
"description": "p5.sound is a minimal wrapper for Tone.js designed to extend the musical and audio capabilities of the p5.js core library.",
"scripts": {
"build": "rollup -c",
"test:integration": "npm run build && npx playwright test",
"test:integration:web": "npx playwright test test-examples-on-web-editor",
"test:integration:web:chromium": "npx playwright test test-examples-on-web-editor --project=web-chromium",
"test:integration:local": "npm run build && npx playwright test test-examples-local",
"test:integration:local:chromium": "npm run build && npx playwright test test-examples-local --project=local-chromium",
"test:integration:ui": "npm run build && npx playwright test --ui"
},
"keywords": [
"p5.js",
"sound"
],
"author": "",
"license": "LGPL-2.1",
"main": "./dist/p5.sound.js",
"files": [
"LICENSE",
"dist/p5.sound.min.js",
"dist/p5.sound.js"
],
"dependencies": {
"lodash": "^4.17.21",
"tone": "^15.0.2",
"yuidocjs": "^0.10.2"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@playwright/test": "^1.60.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/node": "^25.9.1",
"babel-loader": "^9.1.3",
"http-server": "^14.1.1",
"rollup": "^2.79.1",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.12.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"sideEffects": false
}