-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 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
{
"name": "spotify-friend-activity",
"version": "1.1.0",
"description": "Google Chrome Extension to view your friends' activity in Spotify's web player",
"scripts": {
"build": "rm -rf ./dist && webpack && npm run copy:dist",
"copy:dist": "cp ./src/components/popup/popup.html manifest.json ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackweatherford/spotify-friend-activity.git"
},
"keywords": [
"spotify",
"friend",
"activity"
],
"author": "Jack Weatherford <[email protected]> (http://jackweatherford.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackweatherford/spotify-friend-activity/issues/new?assignees=jackweatherford&labels=bug&template=bug_report.md&title=%5BBUG%5D"
},
"homepage": "https://github.com/jackweatherford/spotify-friend-activity#readme",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@babel/preset-env": "^7.21.4",
"babel": "^6.23.0",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"sass": "^1.61.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"webpack": "^5.78.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"preact": "^10.13.2",
"regenerator-runtime": "^0.13.11",
"spotify-buddylist": "^1.0.0",
"spotify-web-api-node": "^5.0.2"
}
}