-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "hyperdeck-server-connection",
"version": "0.2.0",
"description": "Typescript Node.js library for emulating a Blackmagic Hyperdeck",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/baltedewit/hyperdeck-server-connection#readme",
"contributors": [
{
"name": "Balte de Wit",
"email": "contact@balte.nl",
"url": "https://balte.nl"
}
],
"files": [
"/dist",
"/CHANGELOG.md",
"/README.md",
"/LICENSE"
],
"scripts": {
"build": "trash dist && yarn build:main",
"build:main": "tsc",
"lint": "yarn lint:raw .",
"lint:fix": "yarn lint --fix",
"changelog": "yarn sofie-version",
"release": "yarn lint && yarn changelog",
"reset": "git clean -dfx && git reset --hard && yarn",
"validate:dependencies": "yarn audit --groups dependencies && yarn license-validate",
"validate:dev-dependencies": "yarn audit --groups devDependencies",
"lint:raw": "eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist",
"lint-fix": "yarn lint --fix",
"license-validate": "yarn sofie-licensecheck"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "^2.3.1",
"@types/long": "^4.0.1",
"@types/node": "12",
"trash-cli": "^3.0.0",
"typescript": "^4.9.5"
},
"keywords": [
"blackmagic",
"bmd",
"hyperdeck",
"video",
"typescript",
"javascript",
"open source"
]
}