-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.59 KB
/
package.json
File metadata and controls
64 lines (64 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
62
63
64
{
"name": "roku-client",
"version": "6.0.0",
"description": "Send commands to your Roku devices",
"keywords": [
"roku",
"ssdp"
],
"homepage": "https://github.com/bschlenk/node-roku-client",
"bugs": {
"url": "https://github.com/bschlenk/node-roku-client/issues"
},
"license": "Apache-2.0",
"author": "Brian Schlenker <bschlenk@umich.edu> (http://github.com/bschlenk)",
"repository": {
"type": "git",
"url": "https://github.com/bschlenk/node-roku-client"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"!**/__tests__/"
],
"type": "module",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"test:unit": "vitest run",
"test:watch": "vitest",
"lint": "eslint --ext .ts lib",
"lint:fix": "pnpm lint --fix",
"test": "pnpm lint && pnpm test:unit",
"build": "tsc",
"release": "standard-version",
"prepare": "husky",
"prepublishOnly": "pnpm test && pnpm build"
},
"dependencies": {
"debug": "^4.4.3",
"node-ssdp": "^4.0.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@bschlenk/eslint-config": "^0.0.4",
"@commitlint/cli": "^20.4.0",
"@commitlint/config-conventional": "^20.4.0",
"@types/debug": "^4.1.12",
"@types/node": "^25.1.0",
"@types/xml2js": "^0.4.14",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"standard-version": "^9.5.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"vitest-fetch-mock": "^0.4.5"
},
"packageManager": "pnpm@10.28.2"
}