-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·89 lines (89 loc) · 2.87 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
{
"name": "browser_plugin_template",
"version": "0.0.1",
"description": "chrome 浏览器插件脚手架,快速开发、打包、发布插件。",
"main": "index.js",
"scripts": {
"init:lint": "npx eslint --init",
"init:css": "npx tailwindcss init",
"lint": "npx eslint ./src --fix",
"add": "node scripts/add.js",
"start": "node scripts/pack.js --env=development",
"start:debug": "node --inspect-brk scripts/pack.js --env=development",
"pack": "node scripts/pack.js --env=production",
"build": "node scripts/build.js",
"deploy": "node scripts/deploy.js"
},
"keywords": [],
"author": "[email protected]",
"license": "ISC",
"homepage": "https://github.com/weisiwu/browser_plugin_template",
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"axios": "^1.6.0",
"dayjs": "^1.11.10",
"framer-motion": "^6.5.1",
"lodash": "^4.17.21",
"lodash.mergewith": "^4.6.2",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"tailwindcss": "^3.3.6"
},
"devDependencies": {
"@babel/plugin-transform-destructuring": "^7.20.7",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"archiver": "^5.3.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"chalk": "^4.1.2",
"crx": "^5.0.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^11.1.1",
"inquirer": "^9.2.12",
"less": "^4.2.0",
"ora": "^3.4.0",
"postcss": "^8.4.32",
"prettier": "3.1.1",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-generate-html-template": "^1.7.0",
"rollup-plugin-hash": "^1.3.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-multi-input": "^1.3.2",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-serve": "^2.0.2",
"shelljs": "^0.8.5",
"simple-git": "^3.20.0",
"xml": "^1.0.1",
"xml-js": "^1.6.11"
},
"_pluginConfig": {
"injectJs": "",
"injectCss": ""
},
"repository": "[email protected]:weisiwu/browser_plugin_template.git",
"needAuth": false
}