This repository was archived by the owner on Oct 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.59 KB
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
{
"name": "@stream-deck-for-node/sdk",
"version": "1.0.15",
"description": "Unofficial Elgato Stream Deck SDK for Node.js",
"author": "Francesco Saverio Cannizzaro (fcannizzaro)",
"dependencies": {
"axios": "^0.24.0",
"command-line-args": "^5.2.0",
"mime-types": "^2.1.34",
"rxjs": "^7.5.5",
"ws": "^8.3.0"
},
"homepage": "https://stream-deck-for-node.netlify.app",
"repository": "github:stream-deck-for-node/sdk",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "GPL-3.0",
"scripts": {
"prepublish": "npm run build",
"test": "mocha -r ts-node/register tests/index.ts tests/dev-index.ts --exit",
"test:coverage": "nyc mocha -r ts-node/register tests/index.ts tests/dev-index.ts --exit",
"build": "tsc --outDir lib"
},
"publishConfig": {
"access": "public"
},
"files": [
"src",
"package.json",
"lib/**/*.ts",
"lib/**/*.js",
"README.md",
"LICENSE",
"tsconfig.json"
],
"keywords": [
"stream-deck",
"stream-deck-plugin",
"sdk",
"elgato"
],
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-spies": "^1.0.3",
"@types/command-line-args": "^5.2.0",
"@types/mime-types": "^2.1.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"chai": "^4.3.4",
"chai-spies": "^1.0.0",
"eslint": "^8.5.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}