-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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": "@sofie-package-manager/worker",
"version": "1.51.0-alpha.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "yarn rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.json",
"test": "jest --runInBand"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@sofie-automation/shared-lib": "*",
"typescript": "*",
"ws": "*"
},
"devDependencies": {
"@types/deep-diff": "^1.0.0",
"@types/node-fetch": "^2.5.8",
"@types/proper-lockfile": "^4.1.4",
"@types/tmp": "~0.2.2",
"@types/ws": "^8.5.4",
"jest": "*",
"jest-mock-extended": "^3.0.5",
"rimraf": "^5.0.5"
},
"dependencies": {
"@parcel/watcher": "^2.3.0",
"@sofie-package-manager/api": "1.51.0-alpha.2",
"abort-controller": "^3.0.0",
"atem-connection": "^3.2.0",
"csv-parser": "^3.0.0",
"deep-diff": "^1.0.2",
"form-data": "^4.0.0",
"node-fetch": "^2.6.1",
"proper-lockfile": "^4.1.2",
"tmp": "~0.2.1",
"tv-automation-quantel-gateway-client": "3.1.7",
"type-fest": "3.13.1",
"windows-network-drive": "^4.0.1",
"xml-js": "^1.6.11"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{js,css,json,md,scss}": [
"prettier"
],
"*.{ts,tsx}": [
"eslint"
]
}
}