generated from midi-mixer/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.36 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
55
56
{
"name": "com.midi-mixer.obs",
"description": "An OBS integration for MIDI Mixer.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"prestart": "npm run clean",
"build": "tsc",
"semantic-release": "semantic-release",
"postversion": "npx ts-node scripts/bump-manifest.ts && midi-mixer pack",
"pack": "midi-mixer pack"
},
"files": [
"icon.svg",
"PAGE.md",
"plugin.json",
"lib"
],
"license": "ISC",
"devDependencies": {
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/node": "17.0.5",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"midi-mixer-cli": "^1.0.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "18.0.1",
"typescript": "^4.1.3"
},
"dependencies": {
"midi-mixer-plugin": "^1.0.2",
"obs-websocket-js": "^5.0.2",
"ws": "8.4.0"
},
"bundledDependencies": [
"midi-mixer-plugin",
"obs-websocket-js",
"ws"
],
"volta": {
"node": "14.15.4",
"npm": "8.19.2"
},
"version": "1.0.0",
"bundleDependencies": [
"midi-mixer-plugin",
"obs-websocket-js",
"ws"
]
}