-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 2.77 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
90
91
92
93
94
{
"name": "synq-extension",
"displayName": "SynQ for Spotify, YouTube, Amazon Music, more",
"version": "4.0.5",
"description": "Mini player with universal music sharing for Spotify, Apple Music, YouTube Music, and Amazon Music.",
"author": "SynQ, LLC",
"scripts": {
"dev": "plasmo dev",
"build": "npx rimraf ./build ./.plasmo && plasmo build",
"package": "plasmo package",
"format:all": "prettier --write \"**/*.{js,ts,json}\"",
"format:check": "prettier --check \"**/*.{js,ts,json}\"",
"lint:all": "eslint --fix \"**/*.{js,ts,json}\"",
"lint:check": "eslint \"**/*.{js,ts,json}\"",
"check": "pnpm run lint:check && pnpm run format:check"
},
"dependencies": {
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@plasmohq/messaging": "^0.5.0",
"@plasmohq/redux-persist": "^6.1.0",
"@plasmohq/storage": "^1.7.2",
"@reduxjs/toolkit": "^1.9.5",
"@spotify/web-api-ts-sdk": "^1.1.2",
"@synqapp/ui": "^1.0.0",
"cheerio": "1.0.0-rc.12",
"fast-levenshtein": "^3.0.0",
"glob-to-regexp": "^0.4.1",
"plasmo": "0.83.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-fast-marquee": "^1.6.0",
"react-redux": "^8.1.2",
"react-router-dom": "^6.14.0",
"react-slick": "^0.29.0",
"redux": "^4.2.1",
"redux-persist-webextension-storage": "^1.0.2",
"slick-carousel": "^1.8.1",
"styled-components": "^6.0.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "3.6.4",
"@synqapp/eslint-config": "^1.1.0",
"@synqapp/prettier-config": "^1.1.0",
"@types/chrome": "0.0.244",
"@types/fast-levenshtein": "^0.0.4",
"@types/glob-to-regexp": "^0.4.4",
"@types/node": "18.15.12",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"@types/react-slick": "^0.23.13",
"@types/redux-persist-webextension-storage": "^1.0.0",
"@types/spotify-web-playback-sdk": "^0.1.17",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.8",
"prettier": "2.8.7",
"rimraf": "^5.0.1",
"typescript": "5.0.4"
},
"manifest": {
"web_accessible_resources": [
{
"resources": [
"assets/icon.png"
],
"matches": [
"https://www.synqapp.io/*"
]
}
],
"permissions": [
"storage"
],
"optional_host_permissions": [
"https://*/*",
"*://*/*",
"<all_urls>"
],
"optional_permissions": [
"tabs",
"notifications"
],
"externally_connectable": {
"matches": [
"*://music.apple.com/*",
"*://*.spotify.com/*",
"*://music.youtube.com/*",
"*://music.amazon.com/*"
]
}
}
}