-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
36 lines (36 loc) · 999 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
{
"name": "@appcontainer-node/app",
"version": "1.50.6",
"description": "AppContainer-Node.js",
"private": true,
"scripts": {
"build": "yarn rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.json",
"build-win32": "node ../../../scripts/build-win32.mjs appContainer-node.exe && node ../../../scripts/copy-natives.js win32-x64",
"__test": "jest",
"start": "node dist/index.js"
},
"peerDependencies": {
"@sofie-automation/shared-lib": "*",
"typescript": "*"
},
"dependencies": {
"@appcontainer-node/generic": "1.50.6"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{js,css,json,md,scss}": [
"prettier"
],
"*.{ts,tsx}": [
"eslint"
]
},
"devDependencies": {
"lerna": "^6.6.1",
"rimraf": "^5.0.5"
}
}