@roitium/expo-orpheus 0.1.0 → 0.1.1
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/build/hooks/index.d.ts +6 -6
- package/build/hooks/index.js +6 -6
- package/build/hooks/index.js.map +1 -1
- package/build/index.d.ts +1 -1
- package/build/index.js +1 -1
- package/build/index.js.map +1 -1
- package/package.json +4 -5
- package/src/hooks/index.ts +6 -6
- package/src/index.ts +1 -1
package/build/hooks/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
1
|
+
export * from "./useProgress";
|
|
2
|
+
export * from "./usePlaybackState";
|
|
3
|
+
export * from "./useIsPlaying";
|
|
4
|
+
export * from "./useCurrentTrack";
|
|
5
|
+
export * from "./useShuffleMode";
|
|
6
|
+
export * from "./useOrpheus";
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
package/build/hooks/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
1
|
+
export * from "./useProgress";
|
|
2
|
+
export * from "./usePlaybackState";
|
|
3
|
+
export * from "./useIsPlaying";
|
|
4
|
+
export * from "./useCurrentTrack";
|
|
5
|
+
export * from "./useShuffleMode";
|
|
6
|
+
export * from "./useOrpheus";
|
|
7
7
|
//# sourceMappingURL=index.js.map
|
package/build/hooks/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC","sourcesContent":["export * from
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,cAAc,CAAC","sourcesContent":["export * from \"./useProgress\";\nexport * from \"./usePlaybackState\";\nexport * from \"./useIsPlaying\";\nexport * from \"./useCurrentTrack\";\nexport * from \"./useShuffleMode\";\nexport * from \"./useOrpheus\";\n"]}
|
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
package/build/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,SAAS,CAAC","sourcesContent":["export * from \"./ExpoOrpheusModule\";\nexport * from
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,SAAS,CAAC","sourcesContent":["export * from \"./ExpoOrpheusModule\";\nexport * from \"./hooks\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@roitium/expo-orpheus",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A player for bbplayer",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -27,14 +27,13 @@
|
|
|
27
27
|
"author": "Roitium <65794453+roitium@users.noreply.github.com> (https://github.com/roitium)",
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"homepage": "https://github.com/bbplayer-app/orpheus#readme",
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"prettier": "^3.7.4"
|
|
32
|
-
},
|
|
30
|
+
"dependencies": {},
|
|
33
31
|
"devDependencies": {
|
|
34
32
|
"@types/react": "~19.1.0",
|
|
35
33
|
"expo": "^54.0.24",
|
|
36
34
|
"expo-module-scripts": "^5.0.7",
|
|
37
|
-
"react-native": "0.81.5"
|
|
35
|
+
"react-native": "0.81.5",
|
|
36
|
+
"prettier": "^3.7.4"
|
|
38
37
|
},
|
|
39
38
|
"peerDependencies": {
|
|
40
39
|
"expo": "*",
|
package/src/hooks/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
1
|
+
export * from "./useProgress";
|
|
2
|
+
export * from "./usePlaybackState";
|
|
3
|
+
export * from "./useIsPlaying";
|
|
4
|
+
export * from "./useCurrentTrack";
|
|
5
|
+
export * from "./useShuffleMode";
|
|
6
|
+
export * from "./useOrpheus";
|
package/src/index.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from "./ExpoOrpheusModule";
|
|
2
|
-
export * from
|
|
2
|
+
export * from "./hooks";
|