-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "wallex",
"description": "An open-source Wallpaper engine alternative.",
"version": "0.7.0",
"license": "MIT",
"gypfile": true,
"author": "Capure",
"main": "lib/index.js",
"build": {
"appId": "com.capure.wallex",
"productName": "Wallex",
"nodeGypRebuild": true,
"npmRebuild": false,
"files": [
"lib/",
"node_modules/",
"public/",
"electronWallpaper/",
"mouseEvents",
"cpuSaver/",
"build/"
],
"directories": {
"buildResources": "./public"
},
"win": {
"target": [
"nsis"
]
},
"nsis": {
"installerIcon": "./public/icon.ico",
"license": "./LICENSE",
"oneClick": true,
"perMachine": false,
"createStartMenuShortcut": true
}
},
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js && node-gyp rebuild",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"start": "electron lib/index.js",
"configure": "node-gyp configure",
"dist": "npm run build:js && electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/node": "^14.14.31",
"electron": "^12.0.0",
"electron-builder": "^22.11.7",
"electron-rebuild": "^2.3.5",
"typescript": "^4.2.3"
},
"dependencies": {
"@babel/runtime": "^7.13.9",
"bindings": "^1.5.0",
"node-addon-api": "^3.1.0",
"prebuild-install": "^6.0.1"
}
}