forked from 027xiguapi/code-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.98 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
{
"name": "code-box",
"displayName": "__MSG_extensionName__",
"version": "0.6.1",
"description": "__MSG_extensionDescription__",
"author": "027xiguapi. <458813868@qq.com>",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"build:firefox": "plasmo build --target=firefox-mv2",
"build:all": "rimraf build && plasmo build && plasmo build --target=firefox-mv2",
"package": "plasmo package",
"package:firefox": "plasmo package --target=firefox-mv2",
"package:all": "npm run build:all && plasmo package && plasmo package --target=firefox-mv2",
"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/icons": "^5.4.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@mozilla/readability": "^0.5.0",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.11.0",
"antd": "^5.19.4",
"dayjs": "^1.11.12",
"file-saver": "^2.0.5",
"jssha": "^3.3.1",
"plasmo": "0.89.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"turndown": "^7.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"
}
},
"host_permissions": [
"https://*/*"
],
"omnibox": {
"keyword": "copy"
}
}
}