-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.88 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
{
"name": "ryan-mixxx",
"version": "1.0.0",
"description": "Ryan's Mixxx DJ COnfig",
"main": "index.js",
"scripts": {
"test": "mocha --config .mocharc.json test/**/*.spec.ts",
"build": "npm run build-mkii && npm run build-xone-k2 && npm run build-visuals",
"build-mkii": "npx rollup --config src/com/ryan-bradford/launchpad-mkii/mkii-rollup.config.js",
"build-xone-k2": "npx rollup --config src/com/ryan-bradford/xone-k2/xone-k2-rollup.config.js",
"build-visuals": "npx rollup --config src/com/ryan-bradford/visuals/visuals-rollup.config.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ryan-bradford/dj-code.git"
},
"author": "Ryan Bradford",
"license": "ISC",
"bugs": {
"url": "https://github.com/ryan-bradford/dj-code/issues"
},
"homepage": "https://github.com/ryan-bradford/dj-code#readme",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@babel/register": "^7.24.6",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.10",
"@types/p5": "^1.7.6",
"@types/webmidi": "^2.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"mocha": "^10.6.0",
"rollup": "^4.18.1",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.23",
"rollup-plugin-include": "^1.0.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-static-files": "^0.3.0",
"rollup-plugin-strip-exports": "^2.0.7",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"core-js": "^3.38.1",
"p5": "^1.10.0"
}
}