-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "stream-deck-billables-harvest",
"description": "Track time in Harvest on Stream Deck and display time tracked compared with billable hours assigned in Forecast.",
"version": "0.5.3",
"license": "GPL-3.0-or-later",
"author": {
"name": "Emma Litwa-Vulcu",
"email": "[email protected]"
},
"engines": {
"node": "^20.8.1",
"npm": "^10.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/reiniiriarios/stream-deck-billables-harvest.git"
},
"bugs": {
"url": "https://github.com/reiniiriarios/stream-deck-billables-harvest/issues"
},
"homepage": "https://github.com/reiniiriarios/stream-deck-billables-harvest/",
"scripts": {
"test": "jest --runInBand --bail",
"build": "webpack --mode=production",
"package": "npm exec package",
"copy": "./install-plugin.sh",
"build-copy": "npm run build && npm run copy",
"build-pkg": "npm run build && npm exec package",
"dev": "webpack --watch --mode=development",
"newver": "node ./update-version.js"
},
"bin": {
"package": "package/cli.js"
},
"devDependencies": {
"@types/timezoned-date": "^3.0.2",
"copy-webpack-plugin": "^12.0.2",
"dotenv": "^16.4.0",
"jest": "^29.7.0",
"timezoned-date": "^3.0.2",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}