generated from tomchen/example-typescript-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "electron-forge-resource-plugin",
"version": "1.0.0-alpha.8",
"description": "Plugin for Electron Forge to build and package an external resource",
"main": "dist/ResourcePlugin.js",
"types": "dist/ResourcePlugin.d.ts",
"scripts": {
"build": "node tools/cleanup && tsc -p tsconfig.json",
"clean": "node tools/cleanup",
"package": "npm run build && npm pack",
"copy": "copy .\\dist\\*.* ..\\electron_forge_template\\node_modules\\electron-forge-resource-plugin\\dist\\*.*"
},
"files": [
"dist"
],
"keywords": [
"electron",
"forge",
"resource",
"plugin"
],
"author": {
"name": "cwellsx",
"email": "cwellsx@gmail.com"
},
"license": "MIT",
"homepage": "https://github.com/cwellsx/electron-forge-resource-plugin",
"repository": {
"type": "git",
"url": "git@github.com:cwellsx/electron-forge-resource-plugin.git"
},
"bugs": {
"url": "https://github.com/cwellsx/electron-forge-resource-plugin/issues"
},
"devDependencies": {
"@electron-forge/plugin-webpack": "^7.2.0",
"@types/express-ws": "^3.0.1",
"@types/klaw": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.7.1",
"ts-loader": "^9.2.5",
"typescript": "^4.8.3"
},
"dependencies": {
"@electron-forge/plugin-base": "^7.2.0"
}
}