-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.04 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.04 KB
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
{
"name": "@sofie-automation/meteor-lib",
"version": "1.53.0-in-development",
"private": true,
"description": "Temporary internal library for some types shared by meteor and webui",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/sofie-core.git",
"directory": "packages/meteor-lib"
},
"bugs": {
"url": "https://github.com/nrkno/sofie-core/issues"
},
"homepage": "https://github.com/nrkno/sofie-core/blob/master/packages/corelib#readme",
"scripts": {
"build": "run -T rimraf dist && run build:main",
"build:main": "run -T tsc -p tsconfig.build.json",
"lint:raw": "run -T eslint",
"lint": "run lint:raw .",
"unit": "run -T jest",
"test": "run lint && run unit",
"watch": "run -T jest --watch --coverage=false",
"cov": "run -T jest --coverage; open-cli coverage/lcov-report/index.html",
"cov-open": "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",
"license-validate": "run -T sofie-licensecheck"
},
"engines": {
"node": ">=22.20.0"
},
"files": [
"/dist",
"/CHANGELOG.md",
"/README.md",
"/LICENSE"
],
"dependencies": {
"@mos-connection/helper": "^4.2.2",
"@sofie-automation/blueprints-integration": "1.53.0-in-development",
"@sofie-automation/corelib": "1.53.0-in-development",
"@sofie-automation/shared-lib": "1.53.0-in-development",
"deep-extend": "0.6.0",
"semver": "^7.6.3",
"type-fest": "^4.33.0",
"underscore": "^1.13.7"
},
"devDependencies": {
"@types/deep-extend": "^0.6.2",
"@types/semver": "^7.5.8",
"@types/underscore": "^1.13.0"
},
"peerDependencies": {
"i18next": "^21.10.0",
"mongodb": "^6.12.0"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{js,css,json,md,scss}": [
"yarn run -T prettier"
],
"*.{ts,tsx}": [
"yarn lint:raw"
]
},
"packageManager": "yarn@4.10.3"
}