-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.5 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.5 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
{
"name": "cycode",
"version": "2.0.7",
"description": "This is source-code editor",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/magayagalabs/CyCode.git"
},
"dependencies": {
"parcel": "^2.11.0",
"parcel-bundler": "^1.12.5",
"serve": "^14.2.1"
},
"devDependencies": {
"coffeescript": "^2.7.0",
"electron": "^31.0.2",
"electron-packager": "^17.1.2",
"typescript": "^5.0.3"
},
"scripts": {
"start-serve": "serve src/",
"start-parcel": "parcel src/parcel/cycode.html --open",
"build-parcel": "parcel src/parcel/cycode.html",
"cycode": "electron .",
"download-all-os": "npm run download-mac & npm run download-win & download-linux",
"download-default": "electron-packager .",
"download-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=src/img/logo.icns --prune=true --out=release-builds",
"download-win": "electron-packager . cycode --overwrite --asar=true --platform=win32 --arch=ia32 --icon=src/img/logo.ico --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName='CyCode'",
"download-linux": "electron-packager . cycode --overwrite --asar=true --platform=linux --arch=x64 --icon=src/img/logo.png --prune=true --out=release-builds",
"test": "echo \"Error: no test specified\" && exit 1",
"preinstall": "node -e 'process.exit(0)'"
},
"author": "Cyril John Magayaga",
"license": "MIT"
}