forked from cjam/react-native-spotify-remote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.78 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
{
"name": "react-native-spotify-remote",
"repository": {
"type": "git",
"url": "https://github.com/cjam/react-native-spotify-remote.git"
},
"bugs": {
"url": "https://github.com/cjam/react-native-spotify-remote/issues"
},
"version": "0.3.2",
"description": "React Native wrapper around the Spotify Remote SDK",
"author": {
"name": "Colter McQuay"
},
"nativePackage": true,
"license": "ISC",
"keywords": [
"react-native",
"spotify",
"music",
"audio",
"remote",
"mobile"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"rebuild": "yarn build && yarn docs",
"clean": "rm -rf ./dist",
"build": "yarn clean && ./node_modules/.bin/tsc",
"watch": "yarn build --watch",
"docs": "typedoc --options typedoc.json --excludeExternals",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "yarn rebuild",
"prepack": "yarn submodules && yarn cleanup:ios",
"postpack": "yarn submodules",
"cleanup:ios": "pushd ios/external/SpotifySDK/SpotifyiOS.framework; rm SpotifyiOS Headers; mv Versions/Current/* .; popd",
"submodules": "rm -rf ios/external/* && rm -rf android/external/* && git submodule update --init --recursive",
"example": "concurrently -n \"server,packager\" -c \"yellow,cyan\" \"cd example-server && yarn start\" \"cd example && yarn start\"",
"xcode": "open example/ios/example.xcworkspace"
},
"peerDependencies": {
"react-native": "^0.61.5"
},
"dependencies": {
"react-native-events": "^1.0.15"
},
"devDependencies": {
"@types/events": "^1.2.0",
"@types/react-native": "^0.57.0",
"all-contributors-cli": "^6.14.2",
"concurrently": "^5.0.2",
"jetifier": "^1.6.5",
"typedoc": "^0.15.4",
"typescript": "^3.7.3"
}
}