forked from marcoklein/impftermin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.04 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
70
71
72
73
74
75
76
77
{
"name": "impftermin",
"version": "1.9.0",
"main": "build/index.js",
"author": "Marco Klein",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.1",
"debug": "^4.3.1",
"https-proxy-agent": "^5.0.0",
"is-url": "^1.2.4",
"prompts": "^2.4.1",
"puppeteer-core": "^9.1.0",
"release-it": "^14.6.1",
"superstruct": "^0.15.2",
"telegraf": "^4.3.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^2.0.1",
"@types/debug": "^4.1.5",
"@types/is-url": "^1.2.28",
"@types/prompts": "^2.0.11",
"env-cmd": "^10.1.0",
"nodemon": "^2.0.7",
"pkg": "^5.1.0",
"typescript": "^4.2.4"
},
"scripts": {
"start": "yarn build && env-cmd --silent node build/index.js",
"build": "tsc",
"watch": "nodemon --exec \"yarn start\" --watch src -e ts",
"package": "yarn package:win && yarn package:macos && yarn package:linux",
"package:win": "yarn build && pkg -t win-x64 -o dist/impftermin-win.exe build/index.js --public",
"package:macos": "yarn build && pkg -t macos-x64 -o dist/impftermin-macos build/index.js --public",
"package:linux": "yarn build && pkg -t linux-x64 -o dist/impftermin-linux build/index.js --public",
"release": "env-cmd release-it --verbose"
},
"release-it": {
"github": {
"release": true,
"assets": [
"dist/impftermin-win.exe",
"dist/impftermin-macos",
"dist/impftermin-linux"
]
},
"hooks": {
"after:bump": "yarn package"
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Chores"
},
{}
]
}
}
}
}
}