-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.96 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@cldmv/node-android-tv-remote",
"version": "2.1.2",
"description": "A Node.js library for controlling Android TV devices via ADB keycodes and text input.",
"type": "module",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs"
}
},
"scripts": {
"postinstall": "node scripts/postinstall.mjs",
"setup-device": "node scripts/setup-device.mjs",
"build": "echo '✓ no build step'",
"build:ci": "echo '✓ no build step'",
"test": "node tests/run-vitest.mjs",
"test:watch": "vitest --config .configs/vitest.config.mjs",
"coverage": "node tests/run-vitest.mjs --coverage-quiet",
"ci:coverage": "npm run coverage",
"lint": "eslint --config eslint.config.mjs .",
"lint:fix": "eslint --config eslint.config.mjs . --fix",
"format": "prettier --config .prettierrc --write .",
"format:check": "prettier --config .prettierrc --check ."
},
"keywords": [
"android",
"tv",
"remote",
"adb",
"keycode",
"nodejs"
],
"author": {
"name": "Shinrai",
"email": "git@cldmv.net",
"url": "https://cldmv.net"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CLDMV/node-android-tv-remote.git"
},
"contributors": [
{
"name": "CLDMV",
"url": "https://github.com/CLDMV"
}
],
"bugs": {
"url": "https://github.com/CLDMV/node-android-tv-remote/issues"
},
"homepage": "https://github.com/CLDMV/node-android-tv-remote#readme",
"license": "MIT",
"files": [
"src/",
"scripts/",
"index.mjs",
"index.cjs",
"README.md",
"package.json"
],
"dependencies": {
"@devicefarmer/adbkit": "^3.3.8",
"sharp": "^0.35.3"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.9.0"
},
"devDependencies": {
"@cldmv/vitest-runner": "^1.2.0",
"@eslint/css": "^1.4.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^2.0.1",
"@eslint/markdown": "^8.0.3",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.0",
"globals": "^17.9.0",
"prettier": "^3.9.6",
"vitest": "^4.1.10"
}
}