forked from tanguyantoine/react-native-music-control
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "react-native-music-control",
"version": "1.5.2",
"description": "Add information on lockscreen and control playing music",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"ios/",
"android/",
"lib/",
"*.podspec"
],
"keywords": [
"react",
"react-native",
"remote controls",
"lockscreen",
"nowplaying",
"MPNowPlayingInfoCenter",
"ios",
"android"
],
"repository": {
"type": "git",
"url": "https://github.com/swrlab/react-native-music-control.git"
},
"author": "Tanguy Antoine",
"peerDependencies": {
"react-native": ">=0.60.0"
},
"scripts": {
"prepublish": "tsc -p tsconfig.json",
"start": "tsc -p tsconfig.json -w",
"pod:install": "cd ./ios && pod install",
"build:all": "yarn build:ios && yarn build:android",
"build:ios": "cd ./ios && pod install && xcodebuild -workspace MusicControl.xcworkspace -scheme MusicControl -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14,OS=16.0' | xcpretty",
"build:android": "cd ./android && ./gradlew assembleDebug",
"test": "yarn build:all",
"semantic-release:ci": "semantic-release --no-ci",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/react-native": "^0.70.8",
"react-native": "^0.70.6",
"semantic-release": "^19.0.5",
"typescript": "^4.9.4"
}
}