-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.72 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
{
"name": "spotify-friend-activity",
"version": "2.0.0",
"description": "Chrome Extension for Spotify website to view friend listening activity",
"scripts": {
"build:linux": "rm -rf ./dist && webpack && npm run copy:dist:linux && zip -r dist.zip dist",
"copy:dist:linux": "cp ./src/components/Popup/popup.html manifest.json ./dist",
"build:win": "rmdir /s /q dist & npm run copy:dist:win & webpack & powershell Compress-Archive -Force -Path ./dist -DestinationPath dist.zip",
"copy:dist:win": "if not exist dist mkdir dist & copy \".\\src\\components\\Popup\\popup.html\" dist & copy manifest.json dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sakgoyal/spotify-friend-activity.git"
},
"keywords": [
"spotify",
"friend",
"activity",
"chrome",
"extension",
"music"
],
"author": "Saksham Goyal <[email protected]> (http://saksham.dev)",
"license": "GNU GPLv2",
"bugs": {
"url": "https://github.com/sakgoyal/spotify-friend-activity/issues/new?assignees=sakgoyal&labels=bug&template=bug_report.md&title=%5BBUG%5D"
},
"homepage": "https://github.com/sakgoyal/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"
}
}