-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.74 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
{
"name": "lazytype",
"version": "1.0.1",
"description": "A Software to create aliases for commands, applications to type in cmd, terminal.",
"main": "main.js",
"scripts": {
"start": "electron .",
"build64": "electron-packager . LazyType --overwrite --asar=true --platform=win32 --arch=x64 --icon=icons/win/app.ico --prune=true --out=release-builds --version-string.CompanyName=NGUdbhav --version-string.FileDescription=Application --version-string.ProductName=\"LazyType\" && g++ config.cpp -o release-builds\\LazyType-win32-x64\\ConfigUtility.exe resource.res && copy SetEnv.exe release-builds\\LazyType-win32-x64",
"build32": "electron-packager . LazyType --overwrite --asar=true --platform=win32 --arch=ia32 --icon=icons/win/app.ico --prune=true --out=release-builds --version-string.CompanyName=NGUdbhav --version-string.FileDescription=Application --version-string.ProductName=\"LazyType\" && g++ config.cpp -o release-builds\\LazyType-win32-ia32\\ConfigUtility.exe resource.res && copy SetEnv.exe release-builds\\LazyType-win32-ia32",
"test": "g++ config.cpp -o ConfigUtility.exe resource.res && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngudbhav/lazyType.git"
},
"author": "Udbhav Gambhir <[email protected]> (https://www.ngudbhav.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngudbhav/lazyType/issues"
},
"homepage": "https://github.com/ngudbhav/lazyType#readme",
"dependencies": {
"custom-electron-titlebar": "^3.1.0",
"jquery": "^3.4.1",
"materialize-css": "^1.0.0-rc.2",
"nedb": "^1.8.0",
"request": "^2.88.0",
"sudo-prompt": "^9.0.0"
},
"devDependencies": {
"electron": "^6.0.9",
"mocha": "^6.2.1",
"spectron": "^8.0.0"
}
}