-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.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
{
"name": "use-spotify-web-playback-sdk",
"version": "0.2.2",
"description": "React hook for the Spotify Web SDK",
"source": "src/index.ts",
"repository": "https://github.com/niekert/use-spotify-web-playback-sdk",
"author": "Niek Kruse",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"hooks",
"spotify",
"streaming",
"sdk"
],
"files": [
"index.*"
],
"scripts": {
"build": "pack build"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@pika/pack": "^0.3.7",
"@pika/plugin-build-types": "^0.4.0",
"@pika/plugin-build-web": "^0.4.0",
"@pika/plugin-standard-pkg": "^0.4.0",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"@types/spotify-web-playback-sdk": "^0.1.6",
"browser-env": "^3.2.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"typescript": "^3.5.2"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"ava": {
"require": [
"./test-setup.js"
]
},
"dependencies": {}
}