forked from leaperone/MultiPost-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.34 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.34 KB
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
{
"name": "__MSG_extensionName__",
"displayName": "__MSG_extensionDisplayName__",
"version": "1.3.7",
"description": "__MSG_extensionDescription__",
"author": "leaperone",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build && plasmo package",
"package": "plasmo package",
"lint": "biome check",
"lint:fix": "biome check --fix",
"format": "biome format --write",
"lint:staged": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@heroui/react": "2.7.8",
"@heroui/theme": "2.4.6",
"@mozilla/readability": "^0.6.0",
"@plasmohq/storage": "^1.11.0",
"lucide-react": "^0.447.0",
"plasmo": "0.90.5",
"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": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@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",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "8.4.31",
"typescript": "5.2.2"
},
"pnpm": {
"overrides": {
"msgpackr": ">=1.10.1",
"rollup": ">=3.29.5",
"base-x": ">=3.0.11",
"cross-spawn": ">=7.0.5",
"content-security-policy-parser": ">=0.5.3",
"brace-expansion": ">=2.0.2",
"tmp": ">=0.2.4",
"ws": ">=8.17.1",
"micromatch": ">=4.0.8",
"webpack": ">=5.94.0",
"path-to-regexp": ">=8.0.0",
"glob": ">=11.0.0",
"svelte": ">=4.2.19",
"nanoid": ">=3.3.8",
"js-yaml": ">=4.1.1",
"esbuild": ">=0.25.0",
"@babel/runtime": ">=7.26.10",
"@babel/helpers": ">=7.26.10"
}
},
"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/*"]
}
]
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": ["biome check --write --unsafe --no-errors-on-unmatched"]
}
}