-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.86 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.86 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
{
"name": "code-box",
"displayName": "__MSG_extensionName__",
"version": "2.0.0",
"description": "__MSG_extensionDescription__",
"author": "027xiguapi. <458813868@qq.com>",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build --zip",
"build:firefox": "plasmo build --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": "^2.0.1",
"@ant-design/icons": "^6.1.0",
"@joplin/turndown": "^4.0.74",
"@joplin/turndown-plugin-gfm": "^1.0.56",
"@plasmohq/messaging": "^0.7.2",
"@plasmohq/storage": "^1.15.0",
"antd": "^6.1.2",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.12",
"file-saver": "^2.0.5",
"html2canvas": "^1.4.1",
"jssha": "^3.3.1",
"jszip": "^3.10.1",
"plasmo": "0.90.5",
"qrcode": "^1.5.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"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": "19.2.3",
"@types/react-dom": "19.2.3",
"postcss": "^8.2.1",
"postcss-modules": "^4.3.0",
"prettier": "3.2.4",
"sass": "^1.77.8",
"sharp": "^0.33.5",
"typescript": "5.3.3"
},
"manifest": {
"name": "__MSG_extensionName__",
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "$PLASMO_PUBLIC_FIREFOX_EXT_ID"
}
},
"permissions": [
"activeTab",
"downloads"
],
"host_permissions": [
"https://*/*"
],
"omnibox": {
"keyword": "copy"
}
}
}