-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.53 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
57
58
59
60
61
62
63
64
{
"name": "@rweich/streamdeck-emulator",
"version": "0.0.0-development",
"description": "Emulates a streamdeck to speed up plugin development.",
"author": "rweich",
"license": "MIT",
"private": "true",
"scripts": {
"lint": "eslint ./src/**/*.ts",
"lint-tests": "eslint test/**/*.ts",
"prepare": "husky install",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@rweich/streamdeck-events": "^1.0.0",
"chokidar": "^3.5.1",
"eventemitter3": "^4.0.7",
"isomorphic-ws": "^4.0.1",
"jsdom": "^16.5.1",
"loglevel": "^1.7.1",
"loglevel-plugin-prefix": "^0.8.4",
"ts-log": "^2.2.3",
"ws": "^7.4.6"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@rweich/eslint-config": "^1.0.1",
"@rweich/prettier-config": "^1.0.0",
"@types/jsdom": "^16.2.7",
"@types/ws": "^7.4.0",
"esm": "^3.2.25",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=10"
},
"repository": "rweich/streamdeck-emulator",
"bugs": "https://github.com/rweich/streamdeck-emulator/issues",
"keywords": [
"streamdeck",
"elgato",
"typescript",
"emulator"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "@rweich"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"eslint --quiet --fix"
]
},
"prettier": "@rweich/prettier-config"
}