-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.36 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
{
"name": "@kud/androidtv-remote",
"version": "0.1.2",
"type": "module",
"description": "Control Android TV / Google TV devices over the Android TV Remote v2 protocol",
"keywords": [
"android-tv",
"google-tv",
"androidtvremote2",
"remote-control",
"protobuf",
"tls"
],
"license": "MIT",
"author": "Erwann Mest <m@kud.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/kud/androidtv-remote.git"
},
"homepage": "https://github.com/kud/androidtv-remote#readme",
"bugs": {
"url": "https://github.com/kud/androidtv-remote/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "tsx --test test/*.test.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"node-forge": "1.4.0",
"protobufjs": "7.6.4"
},
"devDependencies": {
"@types/crypto-js": "4.2.2",
"@types/node": "25.9.4",
"@types/node-forge": "1.3.14",
"crypto-js": "4.2.0",
"tsup": "8.5.1",
"tsx": "4.22.4",
"typescript": "6.0.3"
},
"engines": {
"node": ">=22.0.0"
}
}