forked from evandcoleman/node-appletv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.44 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
53
54
55
{
"name": "node-appletv",
"version": "1.0.10",
"description": "A Node.js library for communicating with an Apple TV",
"homepage": "https://github.com/edc1591/node-appletv",
"bugs": "https://github.com/edc1591/node-appletv/issues",
"keywords": [
"apple tv",
"appletv",
"mrp",
"media remote"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "npm run clean && tsc && cp -R ./src/lib/protos ./dist/lib/protos",
"clean": "rimraf dist",
"docs": "rimraf docs && typedoc --mode modules --excludePrivate --excludeExternals --out ./docs ./src"
},
"bin": {
"appletv": "bin/appletv"
},
"repository": {
"type": "git",
"url": "https://github.com/edc1591/node-appletv.git"
},
"author": "Evan Coleman <[email protected]> (https://edc.me)",
"license": "MIT",
"dependencies": {
"camelcase": "^4.1.0",
"caporal": "^0.10.0",
"curve25519-n2": "^1.1.3",
"ed25519": "0.0.4",
"fast-srp-hap": "^1.0.1",
"inquirer": "^5.1.0",
"mdns": "^2.3.3",
"ora": "^2.0.0",
"protobufjs": "^6.8.4",
"snake-case": "^2.1.0",
"sodium": "^2.0.3",
"uuid": "^3.2.1",
"varint": "^5.0.0"
},
"devDependencies": {
"@types/inquirer": "0.0.37",
"@types/mdns": "0.0.32",
"@types/node": "^9.3.0",
"@types/ora": "^1.3.2",
"@types/uuid": "^3.4.3",
"rimraf": "^2.6.2",
"typedoc": "^0.11.1",
"typescript": "^2.7.2"
}
}