-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "node-vmix",
"version": "1.7.1",
"description": "Node.js vMix utility to easily send and receive messages to a vMix instance",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jensstigaard/node-vmix.git"
},
"keywords": [
"livestreaming",
"tcpsocket",
"vMix"
],
"author": "Jens Grønhøj Stigaard <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jensstigaard/node-vmix/issues"
},
"homepage": "https://github.com/jensstigaard/node-vmix#readme",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"build-test": "yarn build && yarn test",
"clean": "rimraf ./dist/",
"clean-build": "yarn clean && yarn build",
"docs": "yarn typedoc",
"prepublish": "yarn snyk-protect && yarn clean && yarn build",
"snyk-protect": "snyk-protect",
"snyk-test": "npx snyk test",
"test": "yarn snyk-test && yarn jest"
},
"dependencies": {
"axios": "^1.7.3",
"querystring": "^0.2.1"
},
"devDependencies": {
"@snyk/protect": "^1.1292.2",
"@types/jest": "^29.5.12",
"@types/moxios": "^0.4.17",
"@types/node": "^22.1.0",
"jest": "^29.7.0",
"moxios": "^0.4.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"typedoc": "^0.26.5",
"typescript": "^5.5.4",
"vmix-js-utils": "^4.0.16"
},
"snyk": true
}