-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
79 lines (79 loc) · 2.02 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
{
"name": "__MSG_extensionName__",
"displayName": "__MSG_extensionDisplayName__",
"version": "0.0.7",
"description": "__MSG_extensionDescription__",
"author": "leaperone",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build && plasmo package",
"package": "plasmo package",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:staged": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@heroui/react": "2.6.14",
"@heroui/theme": "2.4.6",
"@mozilla/readability": "^0.5.0",
"@plasmohq/storage": "^1.11.0",
"lucide-react": "^0.447.0",
"plasmo": "0.90.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-viewer": "^3.2.2",
"tailwindcss": "3.3.5",
"turndown": "^7.2.0",
"uuid": "^10.0.0",
"video-react": "^0.16.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@iconify/react": "^5.2.0",
"@types/chrome": "0.0.251",
"@types/node": "20.9.0",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^8",
"eslint-plugin-tailwindcss": "^3.17.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "8.4.31",
"prettier": "3.0.3",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "5.2.2"
},
"manifest": {
"default_locale": "zh_CN",
"host_permissions": [
"https://*/*",
"http://127.0.0.1/*",
"http://localhost/*"
],
"permissions": [
"activeTab",
"tabs",
"background",
"scripting",
"tabGroups",
"sidePanel"
],
"web_accessible_resources": [
{
"resources": [
"assets/icon.png"
],
"matches": [
"https://www.plasmo.com/*"
]
}
]
},
"packageManager": "[email protected]+sha1.2a34aeb80bf8e8435815d14f620ec4ba0eff1604"
}