-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
143 lines (143 loc) · 3.93 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "timeline-state-resolver",
"version": "9.2.0",
"description": "Have timeline, control stuff",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/module/index.js",
"browser": "dist/browser/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/tv-automation-state-timeline-resolver.git"
},
"bugs": {
"url": "https://github.com/nrkno/tv-automation-state-timeline-resolver/issues"
},
"homepage": "https://github.com/nrkno/tv-automation-state-timeline-resolver#readme",
"contributors": [
{
"name": "Johan Nyman",
"email": "[email protected]",
"url": "http://superfly.tv"
},
{
"name": "Mint de Wit",
"email": "[email protected]",
"url": "http://superfly.tv"
},
{
"name": "Jesper Stærkær",
"email": "[email protected]",
"url": "http://superfly.tv"
},
{
"name": "Jan Starzak",
"email": "[email protected]",
"url": "http://superfly.tv"
},
{
"name": "Stephan Nordnes Eriksen",
"email": "[email protected]"
},
{
"name": "Julian Waller",
"email": "[email protected]",
"url": "http://superfly.tv"
}
],
"scripts": {
"unlink:all": "yarn unlink atem-connection & yarn unlink atem-state & yarn unlink casparcg-connection & yarn unlink casparcg-state & yarn unlink superfly-timeline",
"build": "run -T rimraf dist && run build:main && run translations:bundle",
"build:main": "run -T tsc -p tsconfig.build.json",
"lint:raw": "run -T eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist",
"lint": "run lint:raw .",
"lint-fix": "run lint --fix",
"license-validate": "run -T sofie-licensecheck",
"unit": "run -T jest --forceExit",
"unitci": "run -T jest --forceExit --coverage",
"test": "run lint && run unit",
"test:integration": "run lint && run -T jest --config=jest-integration.config.js",
"watch": "run -T jest --watch",
"cov": "run -T jest --coverage && run cov-open",
"cov-open": "run -T open-cli coverage/lcov-report/index.html",
"validate:dependencies": "yarn npm audit --environment production && run license-validate",
"validate:dev-dependencies": "yarn npm audit --environment development",
"generate-schema-types": "node ./scripts/schema-types.mjs",
"translations:extract": "node ./scripts/translation/extract.mjs",
"translations:bundle": "node ./scripts/translation/bundle.mjs"
},
"engines": {
"node": "^14.18 || ^16.14 || 18"
},
"files": [
"/dist",
"/CHANGELOG.md",
"/README.md",
"/LICENSE"
],
"keywords": [
"broadcast",
"socket",
"typescript",
"javascript",
"open",
"source",
"automation",
"rundown",
"production"
],
"dependencies": {
"@tv2media/v-connection": "^7.3.2",
"atem-connection": "3.5.0",
"atem-state": "1.2.0",
"cacheable-lookup": "^5.0.4",
"casparcg-connection": "6.3.0",
"casparcg-state": "3.0.3",
"debug": "^4.3.4",
"deepmerge": "^4.3.1",
"emberplus-connection": "^0.2.1",
"eventemitter3": "^4.0.7",
"got": "^11.8.6",
"hpagent": "^1.2.0",
"hyperdeck-connection": "2.0.1",
"klona": "^2.0.6",
"obs-websocket-js": "^5.0.4",
"osc": "^2.4.4",
"p-all": "^3.0.0",
"p-queue": "^6.6.2",
"p-timeout": "^3.2.0",
"simple-oauth2": "^5.0.0",
"sprintf-js": "^1.1.3",
"superfly-timeline": "^9.0.1",
"threadedclass": "^1.2.1",
"timeline-state-resolver-types": "9.2.0",
"tslib": "^2.6.2",
"tv-automation-quantel-gateway-client": "^3.1.7",
"type-fest": "^3.13.1",
"underscore": "^1.13.6",
"utf-8-validate": "^5.0.10",
"ws": "^7.5.10",
"xml-js": "^1.6.11"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.{css,json,md,scss}": [
"yarn run -T prettier --write"
],
"*.{ts,tsx,mjs,js,jsx}": [
"yarn lint:raw --fix"
]
},
"devDependencies": {
"@types/simple-oauth2": "^5.0.7",
"i18next-conv": "^13.1.1",
"i18next-parser": "^6.6.0",
"jest-mock-extended": "^3.0.7",
"json-schema-ref-parser": "^9.0.9",
"json-schema-to-typescript": "^10.1.5",
"vinyl-fs": "^3.0.3"
}
}