-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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": "vmix-js-utils",
"version": "4.0.19",
"description": "vMix utilities for JavaScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"private": false,
"type": "git",
"url": "git+https://github.com/jensstigaard/vmix-js-utils.git"
},
"keywords": [
"livestreaming",
"vMix",
"vMix Live Video Switching software",
"vMix API",
"vMix Commands",
"vMix State",
"vMix XML API"
],
"author": "Jens Grønhøj Stigaard <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/jensstigaard/vmix-js-utils#readme",
"bugs": {
"url": "https://github.com/jensstigaard/vmix-js-utils/issues"
},
"scripts": {
"build": "tsc",
"build-test": "yarn build && yarn test",
"clean": "rimraf ./dist",
"clean-build": "yarn clean && yarn build",
"docs": "yarn typedoc",
"prepare": "yarn snyk-protect",
"prepublish": "yarn clean && yarn build",
"snyk-protect": "snyk-protect",
"test": "mocha --recursive"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"lodash": "^4.17.21",
"querystring": "^0.2.1",
"xpath": "^0.0.34"
},
"devDependencies": {
"@snyk/protect": "^1.1292.2",
"@types/lodash": "^4.17.7",
"@types/xmldom": "^0.1.34",
"mocha": "^10.7.0",
"rimraf": "^6.0.1",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
},
"snyk": true
}