-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 1.91 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
{
"name": "Dev-Tools",
"displayName": "Dev Tools",
"version": "0.0.9",
"description": "一个集成了多种开发者工具、MOCK、重定向、破解网页复制限制等的浏览器插件。",
"author": "fred",
"scripts": {
"dev": "plasmo dev --env=.env.dev",
"build:prod": "plasmo build --env=.env.prod",
"build:test": "plasmo build --env=.env.test",
"package": "plasmo package",
"fix": "oxlint ./src -c oxlintrc.json --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"dependencies": {
"@ant-design/cssinjs": "^1.21.0",
"@ant-design/icons": "^5.3.7",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.11.0",
"antd": "^5.19.1",
"dayjs": "^1.11.11",
"jsoneditor": "^10.1.0",
"plasmo": "0.88.0",
"radash": "^12.1.0",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@emotion/babel-plugin": "^11.11.0",
"@emotion/babel-preset-css-prop": "^11.11.0",
"@ianvs/prettier-plugin-sort-imports": "4.3.0",
"@parcel/optimizer-data-url": "2.9.3",
"@parcel/transformer-inline-string": "2.9.3",
"@types/chrome": "0.0.268",
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"autoprefixer": "^10.4.19",
"daisyui": "^4.12.10",
"oxlint": "^0.5.3",
"postcss": "^8.4.39",
"prettier": "3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "5.3.3"
},
"manifest": {
"host_permissions": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"permissions": [
"scripting",
"activeTab",
"tabs",
"contextMenus",
"notifications",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"declarativeNetRequestFeedback",
"storage",
"sidePanel"
]
}
}