-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
89 lines (89 loc) · 2.66 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@elgato/streamdeck",
"version": "1.2.1",
"description": "The official Node.js SDK for creating Stream Deck plugins.",
"main": "./dist/index.js",
"type": "module",
"engines": {
"node": ">=20.5.1"
},
"files": [
"./dist/*.js",
"./dist/*.d.ts",
"./types/**/*d.ts"
],
"exports": {
".": {
"browser": {
"default": "./dist/browser.js",
"types": "./dist/browser.d.ts"
},
"default": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"scripts": {
"build": "rm -rf ./dist && rollup --config rollup.config.mjs && npm run types",
"watch": "rollup --config rollup.config.mjs --watch --watch.onEnd=\"npm run types\"",
"types": "rm -rf ./types && mkdir types && cp -r ./dist/types ./",
"lint": "eslint --max-warnings 0",
"lint:fix": "prettier . --write",
"preversion": "npm run build && npm test && npm run lint",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"prettier": "@elgato/prettier-config",
"repository": {
"type": "git",
"url": "git+https://github.com/elgatosf/streamdeck.git"
},
"keywords": [
"elgato",
"stream deck",
"plugin",
"sdk",
"framework",
"marketplace",
"maker"
],
"author": {
"name": "Elgato",
"url": "https://www.elgato.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/elgatosf/streamdeck/issues"
},
"homepage": "https://github.com/elgatosf/streamdeck#readme",
"devDependencies": {
"@elgato/prettier-config": "^0.2.3",
"@eslint/js": "^9.11.1",
"@rollup/plugin-node-resolve": "^15.2.2",
"@rollup/plugin-typescript": "^11.1.5",
"@swc/core": "^1.3.92",
"@swc/jest": "^0.2.29",
"@tsconfig/node20": "^20.1.2",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.5",
"@types/node": "^20.5.1",
"@types/ws": "^8.5.6",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.11.1",
"eslint-plugin-jsdoc": "^50.3.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-websocket-mock": "^2.5.0",
"prettier": "^3.0.3",
"rollup": "^4.0.2",
"typescript": "^5.2.2",
"typescript-eslint": "^8.8.0"
},
"dependencies": {
"@elgato/schemas": "^0.4.0",
"ws": "^8.17.1"
}
}