-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
{
"name": "link-looker",
"displayName": "LinkLooker",
"version": "1.1.7",
"description": "Previews links using ChatGPT when you hover over them",
"author": "Tsuni <[email protected]>",
"scripts": {
"dev-chrome": "plasmo dev",
"dev": "plasmo dev --target=firefox-mv2",
"build": "plasmo build --zip && plasmo build --target=firefox-mv2 --zip",
"debug-build": "plasmo build --target=firefox-mv2 --source-maps --bundle-buddy --no-minify"
},
"dependencies": {
"@mozilla/readability": "^0.5.0",
"@plasmohq/storage": "^1.10.0",
"linkedom": "^0.18.3",
"openai": "^4.38.5",
"plasmo": "0.84.2",
"preact": "10.22.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "0.0.258",
"@types/firefox-webext-browser": "^120.0.3",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"autoprefixer": "^10.4.19",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"globals": "^15.14.0",
"postcss": "^8.4.38",
"prettier": "3.2.4",
"tailwindcss": "^3.4.3",
"typescript": "5.3.3",
"typescript-eslint": "^8.19.1"
},
"manifest": {
"host_permissions": [
"https://*/*"
],
"options_ui": {
"open_in_tab": false
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
}
}