forked from nrkno/sofie-timeline-state-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.91 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
{
"name": "quick-tsr",
"private": true,
"version": "9.2.0",
"description": "Read timeline from file, use TSR, play stuff",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/sofie-timeline-state-resolver.git"
},
"bugs": {
"url": "https://github.com/nrkno/sofie-timeline-state-resolver/issues"
},
"homepage": "https://github.com/nrkno/sofie-timeline-state-resolver#readme",
"author": {
"name": "Johan Nyman",
"email": "[email protected]",
"url": "http://superfly.tv"
},
"contributors": [],
"scripts": {
"build": "run -T rimraf dist && run build:main",
"buildstart": "run build && run start",
"buildinspect": "run build && run inspect",
"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",
"inspect": "node --inspect dist/index.js",
"start": "run -T ts-node src/index.ts",
"validate:dependencies": "yarn npm audit --environment production && run license-validate",
"validate:dev-dependencies": "yarn npm audit --environment development",
"license-validate": "run -T sofie-licensecheck",
"test": "echo \"Note: no test specified for quick-tsr\" && exit 0"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss}": [
"yarn run -T prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
]
},
"engines": {
"node": ">=12.20"
},
"keywords": [
"broadcast",
"socket",
"typescript",
"javascript",
"open",
"source",
"automation",
"ncs",
"nrcs",
"rundown",
"production"
],
"dependencies": {
"chokidar": "^3.6.0",
"fast-clone": "^1.5.13",
"threadedclass": "^1.2.1",
"timeline-state-resolver": "9.2.0",
"tslib": "^2.6.2",
"underscore": "^1.13.6"
}
}