-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "samsung-tv-remote",
"version": "2.2.0",
"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": "src/index.js",
"typings": "src/index.d.ts",
"exports": {
".": {
"require": "./src/index.js",
"types": "./src/index.d.ts",
"default": "./src/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badisi/samsung-tv-remote.git"
},
"keywords": [
"samsung",
"smarttv",
"remote"
],
"scripts": {
"ncu": "npx npm-check-updates -i --format=group --packageFile '{,projects/**/}package.json'",
"build": "node ./build.mjs",
"test:cjs": "node ./tests/test.cjs",
"test:mjs": "node ./tests/test.mjs",
"release": "npm publish ./dist --access public"
},
"dependencies": {
"wake_on_lan": "^1.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@colors/colors": "^1.6.0",
"@types/node": "^22.9.0",
"@types/wake_on_lan": "^0.0.33",
"@types/ws": "^8.5.13",
"cpy": "^11.1.0",
"typescript": "^5.6.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
}
}