-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (76 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (76 loc) · 1.95 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
{
"name": "bsm",
"productName": "BSM",
"version": "1.0.0",
"description": "Bricklink Store Manager",
"main": "dist/index.js",
"scripts": {
"start": "tsc && electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make --arch=x64 ",
"publish": "electron-forge publish --arch=x64",
"publish-mac": "electron-forge publish --arch=x64 --platform darwin",
"publish-windows": "electron-forge publish --arch=x64 --platform win32",
"lint": "eslint --ext .ts ."
},
"keywords": [],
"author": {
"name": "Maximilian Zenz",
"email": "e1633058@student.tuwien.ac.at"
},
"license": "MIT",
"config": {
"forge": {
"packagerConfig": {
"icon": "./icon-01.icns",
"ignore": [
"credentials.jpeg",
"VineyardBricksCredentials.json",
"icon-01.png",
"icon.ai"
]
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "bsm"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}
},
"devDependencies": {
"@electron-forge/cli": "^6.2.1",
"@electron-forge/maker-deb": "^6.2.1",
"@electron-forge/maker-rpm": "^6.2.1",
"@electron-forge/maker-squirrel": "^6.2.1",
"@electron-forge/maker-zip": "^6.2.1",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"electron": ">=19.1.8",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "~4.5.4"
},
"dependencies": {
"bricklink-plus": "1.0.6",
"electron-squirrel-startup": "^1.0.0",
"oauth-request": "^0.1.0",
"pdfmake": "^0.2.5"
}
}