-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
89 lines (89 loc) · 2.45 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"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": "1.0.0-1",
"description": "React Native wrapper around the Spotify Remote SDK",
"author": {
"name": "Colter McQuay"
},
"licenses": [
{
"type": "MIT",
"url": "https://www.opensource.org/licenses/mit-license.php"
}
],
"nativePackage": true,
"license": "ISC",
"keywords": [
"react-native",
"spotify",
"music",
"audio",
"remote",
"mobile",
"player"
],
"main": "dist/index",
"module": "dist/index",
"types": "dist/index.d.ts",
"source": "dist/index",
"react-native": "dist/index",
"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",
"cleanup:ios": "pushd ios/external/SpotifySDK/SpotifyiOS.framework; rm SpotifyiOS Headers; mv Versions/Current/* .; popd",
"postpack": "yarn submodules",
"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",
"release": "release-it",
"contribute": "all-contributors add && all-contributors generate"
},
"peerDependencies": {
"react-native": ">=0.60"
},
"dependencies": {},
"devDependencies": {
"@release-it/keep-a-changelog": "^2.2.2",
"@types/react-native": "^0.60.0",
"all-contributors-cli": "^6.14.2",
"concurrently": "^5.0.2",
"release-it": "^14.6.1",
"typedoc": "^0.20.24",
"typescript": "^4.1.3"
},
"release-it": {
"hooks": {
"after:bump": [
"npm run rebuild"
]
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"addUnreleased": true
}
}
}
}