-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.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
{
"name": "satcom",
"displayName": "Satcom - Collaborative layer for the Internet",
"version": "0.1.6",
"description": "Adding collaborative layer to your Internet browsing experience.",
"author": "Jingles ([email protected])",
"scripts": {
"start": "next start",
"dev:plasmo": "plasmo dev",
"dev:next": "next dev",
"build:plasmo": "plasmo build",
"build:next": "next build",
"build:firefox": "plasmo build --target=firefox-mv2"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@nostr-dev-kit/ndk": "^2.3.3",
"@plasmohq/messaging": "^0.6.1",
"@plasmohq/storage": "^1.9.0",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^2.0.3",
"@tanstack/react-query": "^5.17.19",
"lodash": "^4.17.21",
"next": "14.0.2",
"nostr-login": "^1.0.11",
"nostr-tools": "^2.1.4",
"parse-path": "^7.0.0",
"plasmo": "0.84.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-string-replace": "^1.1.1",
"string-strip-html": "8.4.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/chrome": "0.0.251",
"@types/node": "20.9.0",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.33",
"prettier": "3.0.3",
"tailwindcss": "^3.4.1",
"typescript": "5.2.2",
"vm-browserify": "^1.1.2"
},
"manifest": {
"host_permissions": [
"http://*/*",
"https://*/*"
],
"permissions": [
"activeTab",
"tabs"
],
"web_accessible_resources": [
{
"resources": [
"assets/icon.png",
"assets/icon.svg",
"assets/web_accessible_resources.js"
],
"matches": [
"<all_urls>"
]
}
]
}
}