-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
97 lines (97 loc) · 2.65 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "dev-go",
"displayName": "DevGo",
"version": "0.0.6",
"description": "A super unbeatable browser extension plugin for developers.",
"author": "荣顶",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"build:zip": "plasmo build -- --zip",
"package": "plasmo package",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,scss,less,html,json,md}\"",
"eslint": "eslint \"./**/*{.js,.ts,.jsx,.tsx}\" --fix",
"prepare": "husky install",
"release": "standard-version",
"cz": "cz"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,css,sass,scss,less,md,json,html}": [
"prettier --write"
],
"*.{ts,js,tsx,jsx}": [
"eslint"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"dependencies": {
"antd": "^5.0.3",
"lodash": "^4.17.21",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/cz-commitlint": "^17.8.1",
"@plasmohq/prettier-plugin-sort-imports": "3.5.4",
"@types/chrome": "0.0.198",
"@types/node": "18.11.0",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.13",
"commitizen": "^4.2.5",
"commitlint-config-cz": "^0.13.3",
"cz-customizable": "^7.0.0",
"eslint": "^8.0.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"plasmo": "^0.84.0",
"postcss": "^8.4.19",
"prettier": "2.8.0",
"prettier-plugin-tailwindcss": "^0.2.0",
"standard-version": "^9.5.0",
"tailwindcss": "^3.2.4",
"typescript": "*"
},
"homepage": "https://github.com/wangrongding",
"manifest": {
"homepage_url": "https://github.com/wangrongding",
"permissions": [
"contextMenus",
"scripting"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Q",
"windows": "Alt+Q",
"mac": "Alt+Q",
"chromeos": "Alt+Q",
"linux": "Alt+Q"
}
},
"inline-translate": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"windows": "Ctrl+Shift+E",
"chromeos": "Ctrl+Shift+E",
"linux": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
},
"description": "inline-translate"
}
}
}
}