-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "companion-worker-modules",
"private": true,
"version": "1.1.0",
"description": "Generate a JSON files from the current module base used in companion.",
"main": "./build/main.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf build && tsc",
"dev": "DEBUG_WRITE_TO_FILE=1 tsx watch src/main.ts",
"docker:build": "docker build -t ghcr.io/bitfocus/companion-worker-modules .",
"docker:run": "docker run -it --rm ghcr.io/bitfocus/companion-worker-modules",
"docker:push": "docker push ghcr.io/bitfocus/companion-worker-modules",
"k8s:apply": "kubectl -n bitfocus apply -f kubernetes/cronjob.yml",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-worker-modules.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitfocus/companion-worker-modules/issues"
},
"release-it": {
"github": {
"release": false
},
"git": {
"commitMessage": "Release v${version}",
"requireBranch": [
"main",
"master"
],
"tagName": "v${version}"
},
"npm": {
"publish": false
}
},
"homepage": "https://github.com/bitfocus/companion-worker-modules#readme",
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/node": "^18.19.50",
"prettier": "^3.3.3",
"release-it": "15.11.0",
"rimraf": "^5.0.10",
"tsx": "^4.19.0",
"typescript": "~5.6.2"
},
"dependencies": {
"@companion-module/base": "^1.10.0"
},
"packageManager": "yarn@4.4.1"
}