-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 982 Bytes
/
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
{
"name": "@sofie-package-manager/api",
"version": "1.51.0-alpha.2",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"build": "yarn rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.json",
"test": "jest"
},
"peerDependencies": {
"@sofie-automation/shared-lib": "*"
},
"devDependencies": {
"@types/winston": "^2.3.9",
"@types/ws": "^8.5.4",
"jest": "*",
"rimraf": "^5.0.5"
},
"dependencies": {
"underscore": "^1.12.0",
"winston": "^3.5.1",
"ws": "^8.12.0",
"yargs": "^17.7.2"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{js,css,json,md,scss}": [
"prettier"
],
"*.{ts,tsx}": [
"eslint"
]
}
}