forked from 027xiguapi/code-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.01 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": "code-box",
"displayName": "__MSG_extensionName__",
"version": "0.8.0",
"description": "__MSG_extensionDescription__",
"author": "027xiguapi. <458813868@qq.com>",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build --zip",
"build:firefox": "plasmo build --no-minify --no-hoist --zip --target=firefox-mv3",
"package": "plasmo package",
"clean": "rimraf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/027xiguapi/code-box.git"
},
"bugs": {
"url": "https://github.com/027xiguapi/code-box/issues"
},
"homepage": "https://github.com/027xiguapi/code-box#readme",
"dependencies": {
"@ant-design/cssinjs": "^1.21.1",
"@ant-design/icons": "^5.5.1",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@joplin/turndown": "^4.0.74",
"@joplin/turndown-plugin-gfm": "^1.0.56",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.11.0",
"antd": "^5.21.1",
"dayjs": "^1.11.12",
"file-saver": "^2.0.5",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.2",
"jssha": "^3.3.1",
"plasmo": "0.89.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "0.0.258",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"postcss": "^8.2.1",
"postcss-modules": "^4.3.0",
"prettier": "3.2.4",
"sass": "^1.77.8",
"sharp": "^0.33.4",
"typescript": "5.3.3"
},
"manifest": {
"name": "__MSG_extensionName__",
"default_locale": "zh_CN",
"browser_specific_settings": {
"gecko": {
"id": "$PLASMO_PUBLIC_FIREFOX_EXT_ID"
}
},
"permissions": [
"activeTab"
],
"host_permissions": [
"https://*/*"
],
"omnibox": {
"keyword": "copy"
}
},
"pnpm": {
"patchedDependencies": {
"jspdf": "patches/jspdf.patch"
}
}
}