@basmilius/apple-sdk 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2583 -0
- package/dist/index.mjs +4590 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@basmilius/apple-sdk",
|
|
3
|
+
"description": "High-level SDK for controlling Apple devices (Apple TV, HomePod) via AirPlay and Companion Link.",
|
|
4
|
+
"version": "0.11.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "Bas Milius",
|
|
9
|
+
"email": "bas@mili.us",
|
|
10
|
+
"url": "https://bas.dev"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/basmilius/apple-protocols",
|
|
15
|
+
"directory": "packages/sdk"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"apple",
|
|
19
|
+
"airplay",
|
|
20
|
+
"companion link",
|
|
21
|
+
"apple tv",
|
|
22
|
+
"homepod",
|
|
23
|
+
"homepod mini",
|
|
24
|
+
"sdk"
|
|
25
|
+
],
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"LICENSE"
|
|
29
|
+
],
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public",
|
|
32
|
+
"provenance": false
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "tsgo --noEmit && tsdown",
|
|
36
|
+
"dev": "tsdown --watch"
|
|
37
|
+
},
|
|
38
|
+
"main": "./dist/index.mjs",
|
|
39
|
+
"types": "./dist/index.d.mts",
|
|
40
|
+
"typings": "./dist/index.d.mts",
|
|
41
|
+
"sideEffects": false,
|
|
42
|
+
"exports": {
|
|
43
|
+
".": {
|
|
44
|
+
"types": "./dist/index.d.mts",
|
|
45
|
+
"default": "./dist/index.mjs"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@basmilius/apple-airplay": "0.11.0",
|
|
50
|
+
"@basmilius/apple-audio-source": "0.11.0",
|
|
51
|
+
"@basmilius/apple-common": "0.11.0",
|
|
52
|
+
"@basmilius/apple-companion-link": "0.11.0",
|
|
53
|
+
"@basmilius/apple-encoding": "0.11.0",
|
|
54
|
+
"@basmilius/apple-raop": "0.11.0"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@types/bun": "^1.3.11",
|
|
58
|
+
"@types/node": "^25.5.0",
|
|
59
|
+
"tsdown": "^0.21.6"
|
|
60
|
+
}
|
|
61
|
+
}
|