-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "streamdeck-util",
"version": "0.4.0",
"description": "Node.js package to help your Node.js scripts easily interface with an official Stream Deck application plugin.",
"keywords": [
"deck",
"elgato",
"helper",
"stream",
"streamdeck",
"util",
"utility"
],
"homepage": "https://github.com/zoton2/node-streamdeck-util#readme",
"bugs": {
"url": "https://github.com/zoton2/node-streamdeck-util/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zoton2/node-streamdeck-util.git"
},
"license": "MIT",
"author": "zoton2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"autofix": "eslint --fix --ext .ts src",
"build": "tsc -b tsconfig.json",
"clean": "trash node_modules/.cache && trash dist",
"test-server": "ts-node test/server.ts",
"watch": "tsc -b tsconfig.json -w"
},
"dependencies": {
"@types/ws": "^8.2.2",
"ws": "^8.4.0"
},
"devDependencies": {
"@types/node": "^16.11.19",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"trash-cli": "^5.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}