-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.2 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.2 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "BlasterMaker",
"version": "1.0.1",
"description": "Software para la creacion de patrones con hama beads",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --x64 --publish never",
"publish": "electron-builder build --publish always",
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/elmarceloc/BlasterMaker.git"
},
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "Marcelo Cornejo <untipollamadomarcelo@gmail.com>",
"contributors": [
"Marcelo Cornejo untipollamadomarcelo@gmail.com"
],
"license": "CC0-1.0",
"devDependencies": {
"electron": "^16.0.3",
"electron-builder": "^22.8.1",
"minami": "^1.2.3"
},
"dependencies": {
"@electron/remote": "^2.0.1",
"cheerio": "^1.0.0-rc.3",
"clean-jsdoc-theme": "^3.2.7",
"custom-electron-titlebar": "^3.2.4",
"dialogs": "^2.0.1",
"dotenv": "^9.0.2",
"electron-google-analytics": "^1.0.2",
"electron-is-dev": "^2.0.0",
"electron-json-storage": "^4.5.0",
"electron-packager": "^15.2.0",
"electron-reload": "^1.5.0",
"electron-tooltip": "^1.1.5",
"electron-updater": "^4.3.9",
"i": "^0.3.6",
"image-size": "^0.9.3",
"minimist": "^1.2.5",
"npm": "^6.14.8",
"open": "^7.3.0",
"slugify": "^1.4.6",
"sync-request": "^6.1.0",
"universal-analytics": "^0.4.23"
},
"build": {
"copyright": "Copyright © 2022 BlasterChile.cl",
"productName": "Blaster Maker",
"appId": "com.blasterchile.id",
"linux": {
"icon": "./linux_icon.png",
"target": [
"deb"
]
},
"mac": {
"category": "public.app-category.graphics-design",
"hardenedRuntime": true
},
"win": {
"target": "nsis",
"icon": "/icon.ico",
"legalTrademarks": "Copyright © 2022 BlasterChile.cl",
"verifyUpdateCodeSignature": false
},
"fileAssociations": [
{
"ext": "bm",
"name": "BlasterMaker",
"role": "Editor",
"icon": "../icon.ico"
}
]
}
}