This repository was archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "human-electron",
"version": "0.0.1",
"description": "Human with ElectronJS",
"main": "app/main.js",
"scripts": {
"transpile": "esbuild --bundle --format=esm --platform=browser --target=es2016 --outfile=app/renderer.js app/renderer.ts",
"start": "npm run transpile && electron .",
"package": "npm run transpile && electron-forge package",
"make": "npm run transpile && electron-forge make"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vladmandic/human-electron.git"
},
"author": "Vladimir Mandic <mandic00@live.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vladmandic/human-electron/issues"
},
"homepage": "https://github.com/vladmandic/human-electron#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vladmandic/human": "^2.10.2",
"electron-forge": "^5.2.4",
"electron-prebuilt-compile": "8.2.0",
"electron": "^20.1.3",
"esbuild": "^0.15.7",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0"
},
"config": {
"forge": {
"packagerConfig": {},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "human_electron"
}
},
{
"name": "@electron-forge/maker-deb",
"config": {}
}
]
}
}
}