-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.76 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.76 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
{
"name": "wechat-reader-enhancer",
"type": "module",
"version": "2.0.8",
"private": true,
"description": "为微信公众号文章生成结构化目录,提升阅读体验",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "vue-tsc --noEmit",
"lint": "eslint . --fix",
"postinstall": "simple-git-hooks && wxt prepare",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@joplin/turndown-plugin-gfm": "^1.0.62",
"@wxt-dev/webextension-polyfill": "^1.0.0",
"@zxing/browser": "^0.1.5",
"cheerio": "^1.0.0",
"linkify-it": "^5.0.0",
"lodash-es": "^4.17.21",
"marked": "^15.0.11",
"medium-zoom": "^1.1.0",
"ofetch": "^1.4.1",
"qrcode": "^1.5.4",
"reading-time-estimator": "^1.14.0",
"tlds": "^1.258.0",
"turndown": "^7.2.0",
"vue": "^3.5.13",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@types/linkify-it": "^5.0.0",
"@types/lodash-es": "^4.17.12",
"@types/qrcode": "^1.5.5",
"@types/turndown": "^5.0.5",
"@unocss/eslint-plugin": "^66.1.0",
"@vitejs/plugin-vue-jsx": "^4.1.2",
"@wxt-dev/module-vue": "^1.0.2",
"eslint": "^9.23.0",
"eslint-plugin-format": "^1.0.1",
"simple-git-hooks": "^2.12.1",
"typescript": "5.6.3",
"unocss": "^66.1.0",
"vite": "^6.0.0",
"vitepress": "^1.6.3",
"vue-tsc": "^2.2.10",
"wxt": "^0.20.11"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "npm run lint"
}
}