-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.93 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
{
"name": "video-bubbles",
"productName": "Bubbles",
"version": "0.8.0",
"author": "Colin Clark",
"repository": {
"type": "git",
"url": "git://github.com/colinbdclark/bubbles.git"
},
"bugs": "http://github.com/colinbdclark/bubbles/issues",
"license": "MIT",
"keywords": [
"video",
"art",
"synthesis",
"compositing",
"authoring",
"webgl"
],
"readmeFilename": "README.md",
"main": "main.js",
"devDependencies": {
"electron": "30.0.9",
"electron-icon-builder": "2.0.1",
"@electron/packager": "18.3.2",
"fluid-lint-all": "1.2.11",
"node-jqunit": "1.1.9"
},
"dependencies": {
"@electron/remote": "2.1.2",
"aconite": "0.11.2",
"flocking": "2.0.2",
"fluid-binder": "1.1.2",
"infusion": "3.0.1",
"infusion-electron": "0.8.1",
"kettle": "2.3.0",
"normalize.css": "8.0.1",
"osc": "2.4.4"
},
"overrides": {
"jquery": "3.7.1",
"codemirror": "5.65.16"
},
"scripts": {
"lint": "fluid-lint-all",
"test": "node_modules/.bin/electron tests/all-tests.js",
"app": "node_modules/.bin/electron .",
"make-icons": "node_modules/.bin/electron-icon-builder --input=./images/bubbles-icon-1024px.png --output=./images/",
"package-win": "node_modules/.bin/electron-packager ./ --platform=win32 --arch=x64 --out=./dist --icon=images/icons/win/icon.ico --overwrite",
"package-mac-arm": "node_modules/.bin/electron-packager ./ --platform=darwin --arch=arm64 --out=./dist --icon=images/icons/mac/icon.icns --overwrite",
"package-mac-intel": "node_modules/.bin/electron-packager ./ --platform=darwin --arch=x64 --out=./dist --icon=images/icons/mac/icon.icns --overwrite",
"package-all": "npm run package-mac-arm && npm run package-mac-intel && npm run package-win"
}
}