-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
executable file
·70 lines (70 loc) · 1.57 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-track-player",
"version": "1.0.16",
"description": "A fully fledged audio module created for music apps",
"summary": "Cross platform music player",
"author": "Yajana N Rao",
"homepage": "https://github.com/YajanaRao/react-track-player.git#readme",
"private": false,
"main": "src/index.tsx",
"source": "src/index.tsx",
"module": "src/index.tsx",
"files": [
"lib",
"src",
"android",
"ios",
"react-track-player.podspec"
],
"react-native": "src/index.tsx",
"contributors": [
{
"name": "Yajana N Rao",
"email": "[email protected]",
"url": "http://yajanarao.github.io"
}
],
"keywords": [
"react",
"react-native",
"track-player",
"audio-player",
"audio",
"player",
"music",
"controls",
"chromecast",
"android",
"hooks"
],
"scripts": {
"tsc": "tsc",
"log": "adb logcat *:S ReactTrackPlayer:V",
"test": "echo \"no test specified\" ",
"build": "tsc",
"release": "release-it"
},
"license": "Apache-2.0",
"repository": "https://github.com/YajanaRao/react-track-player.git",
"bugs": {
"url": "https://github.com/YajanaRao/react-track-player/issues"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"@types/react": "^17.0.3",
"@types/react-native": "^0.64.2",
"release-it": "^13.6.6",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-native": ">=0.60.0"
},
"release-it": {
"github": {
"release": true
}
},
"dependencies": {}
}