-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"type": "module",
"name": "spotify-connect",
"description": "Get useful analytics from the spotify API in your React app",
"version": "1.7.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aquibbaig/spotify-connect.git"
},
"keywords": [
"spotify",
"nextjs",
"rfc",
"playlist"
],
"author": "Aquib Baig",
"license": "MIT",
"bugs": {
"url": "https://github.com/aquibbaig/spotify-connect/issues"
},
"homepage": "https://github.com/aquibbaig/spotify-connect#readme",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/react": "^18.2.29",
"react-dom": "^18.3.1",
"rollup": "^4.21.2",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.7.0",
"typescript": "^5.3.2",
"@types/node": "^20.8.7",
"react": "^18.2.0"
},
"peerDependencies": {
"react": "^18.2.0"
}
}