-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.57 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.57 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
{
"name": "samsung-tv-remote",
"version": "3.0.3",
"description": "Remote client for Samsung SmartTV starting from 2016",
"homepage": "https://github.com/Badisi/samsung-tv-remote",
"license": "MIT",
"author": {
"name": "Badisi"
},
"type": "commonjs",
"main": "index.js",
"typings": "index.d.ts",
"exports": {
".": {
"require": "./index.js",
"types": "./index.d.ts",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"bin": {
"samsung-tv-remote": "bin/samsung-tv-remote"
},
"repository": {
"type": "git",
"url": "https://github.com/Badisi/samsung-tv-remote"
},
"keywords": [
"samsung",
"smarttv",
"remote"
],
"scripts": {
"ncu": "npx npm-check-updates -i --format=group --packageFile '{,projects/**/}package.json' --no-deprecated",
"build": "node ./build.mjs",
"test:cli": "npm run build && ./dist/bin/samsung-tv-remote --verbose",
"test:cjs": "npm run build && LOG_LEVEL=debug node ./tests/test.cjs",
"test:mjs": "npm run build && LOG_LEVEL=info node ./tests/test.mjs",
"release": "npm publish ./dist --access public"
},
"dependencies": {
"wake_on_lan": "^1.0.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@types/wake_on_lan": "^0.0.33",
"@types/ws": "^8.18.1",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"bufferutil": "^4.1.0"
}
}