-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·95 lines (95 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·95 lines (95 loc) · 3.18 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@huxy/pack",
"version": "2.3.12",
"title": "scripts",
"feature": "0.0.1",
"hooks": "0.0.1",
"type": "module",
"description": "@huxy/pack 是一个项目构建工具,集成了 esbuild、eslint、stylelint、jest、commitlint、husky、standard-version、prettier,提供开发环境、构建打包、本地启动服务、环境配置、代理配置等功能。使用简单方便,功能齐全,配置灵活,可自己添加需要的功能插件。",
"homepage": "https://github.com/ahyiru/pack",
"keywords": [
"webpack",
"node.js",
"esbuild",
"eslint",
"jest",
"commitlint",
"husky",
"prettier",
"standard-version",
"scripts",
"configs"
],
"sideEffects": false,
"module": "./bin/huxy.js",
"exports": {
".": "./index.js",
"./package.json": "./package.json",
"./config/eslint": "./configs/shared/eslint.config.js",
"./config/stylelint": "./configs/shared/stylelint.config.js",
"./config/commitlint": "./configs/shared/commitlint.config.js",
"./config/babel": "./configs/shared/babel.config.js",
"./config/prettier": "./configs/shared/prettier.config.js",
"./config/jest": "./configs/shared/jest.config.js",
"./config/postcss": "./configs/shared/postcss.config.js",
"./config/version": "./configs/shared/.versionrc.js"
},
"scripts": {
"start": "node scripts/index.js",
"build": "webpack --config scripts/webpack.production.js --progress",
"analyze": "ANALYZE=1 webpack --config scripts/webpack.production.js --progress",
"server": "node scripts/server.js --watch scripts/server.js",
"test": "jest --colors --coverage",
"eslint": "eslint scripts --ext .js,.jsx",
"lint": "npm run eslint",
"lint-fix": "eslint --fix scripts --ext .js,.jsx",
"prettier": "prettier 'scripts/**/*' --write --ignore-unknown",
"release": "commit-and-tag-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahyiru/pack.git"
},
"author": "Yiru <ah.yiru@gmail.com>",
"license": "MIT",
"dependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@huxy/commit-and-tag-version": "^12.4.1",
"@huxy/copy-file-webpack-plugin": "^1.1.9",
"@huxy/open-browser-webpack-plugin": "^1.1.7",
"@huxy/utils": "^2.1.23",
"esbuild": "^0.28.2",
"esbuild-loader": "^4.5.0",
"eslint": "^10.10.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.1.1",
"fix-html-webpack-plugin": "^0.0.1",
"fs-extra": "^11.4.0",
"globals": "^17.12.0",
"html-loader": "^5.1.0",
"huxy-node-server": "^1.3.12",
"jest": "^30.5.1",
"jest-environment-jsdom": "^30.5.1",
"less": "^4.9.1",
"less-loader": "^13.0.0",
"prettier": "^3.9.6",
"webpack": "^5.110.3",
"webpack-bundle-analyzer": "^5.3.3",
"webpack-cli": "^7.2.3",
"webpack-dev-middleware": "^8.3.0",
"webpack-hot-middleware": "^2.26.1",
"webpack-merge": "^6.0.1",
"workbox-webpack-plugin": "^7.4.1"
},
"engines": {
"node": ">=20.0.0"
},
"bin": {
"pack": "bin/huxy.js"
},
"overrides": {
"zod-validation-error": "^4.0.0"
}
}