-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.38 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
{
"name": "kindle-cloud-reader-rpc",
"displayName": "Kindle Cloud Reader Rich Presence",
"version": "0.1.0",
"description": "An extension that enables rich presence for Kindle cloud reader",
"author": "lazykern",
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build"
},
"dependencies": {
"@plasmohq/storage": "^0.9.1",
"discord-rpc": "^4.0.1",
"express": "^4.18.1",
"path-browserify": "^1.0.1",
"plasmo": "0.53.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"stream-http": "^3.2.0",
"timers-browserify": "^2.0.12"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "1.2.0",
"@types/chrome": "0.0.196",
"@types/discord-rpc": "^4.0.3",
"@types/express": "^4.17.13",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"prettier": "2.7.1",
"typescript": "4.8.2"
},
"manifest": {
"host_permissions": [
"https://*/*",
"http://*/*"
],
"background": {
"service_worker": "../src/background.ts",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://read.amazon.com/*"
],
"js": [
"../src/content.ts"
]
}
],
"permissions": [
"tabs",
"storage",
"activeTab"
]
}
}