@corespeed/webpack 0.0.0 → 0.1.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,11 +1,87 @@
1
1
  {
2
2
  "name": "@corespeed/webpack",
3
- "version": "0.0.0",
4
- "description": "",
5
- "scripts": {},
6
- "main": "",
7
- "files": [],
8
- "keywords": [],
3
+ "version": "0.1.0-beta.1",
4
+ "description": "The opinionated webpack configuration for CoreSpeed projects.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/corespeed-io/webpack"
8
+ },
9
+ "main": "./dist/index.cjs",
10
+ "module": "./dist/index.mjs",
11
+ "types": "./dist/index.d.ts",
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.mjs",
19
+ "require": "./dist/index.cjs",
20
+ "default": "./dist/index.cjs"
21
+ },
22
+ "./package.json": "./package.json"
23
+ },
24
+ "keywords": [
25
+ "webpack",
26
+ "configuration",
27
+ "corespeed"
28
+ ],
9
29
  "license": "UNLICENSED",
10
- "dependencies": {}
11
- }
30
+ "dependencies": {
31
+ "@antfu/install-pkg": "^1.1.0",
32
+ "@clack/prompts": "^0.11.0",
33
+ "@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
34
+ "@sentry/webpack-plugin": "^4.6.1",
35
+ "@swc/core": "^1.15.7",
36
+ "@types/webpack-bundle-analyzer": "^4.7.0",
37
+ "browserslist": "^4.28.1",
38
+ "clean-webpack-plugin": "^4.0.0",
39
+ "copy-webpack-plugin": "^13.0.1",
40
+ "css-loader": "^7.1.2",
41
+ "dotenv": "^17.2.3",
42
+ "enhanced-resolve": "^5.18.4",
43
+ "foxts": "^5.0.4",
44
+ "get-port-please": "^3.2.0",
45
+ "html-webpack-plugin": "^5.6.5",
46
+ "is-ci": "^4.1.0",
47
+ "lightningcss": "^1.30.2",
48
+ "lightningcss-loader": "^3.0.0",
49
+ "mini-css-extract-plugin": "^2.9.4",
50
+ "react-compiler-webpack": "^1.0.0",
51
+ "swc-loader": "^0.2.6",
52
+ "terser-webpack-plugin": "^5.3.16",
53
+ "tsconfig-paths-webpack-plugin": "^4.2.0",
54
+ "webpack-bundle-analyzer": "^5.1.0",
55
+ "webpackbar": "^7.0.0"
56
+ },
57
+ "devDependencies": {
58
+ "@svgr/webpack": "^8.1.0",
59
+ "@swc/types": "^0.1.25",
60
+ "@types/node": "^25.0.3",
61
+ "@types/webpack": "^5.28.5",
62
+ "bumpp": "^10.3.2",
63
+ "bunchee": "^6.7.0",
64
+ "core-js": "^3.47.0",
65
+ "eslint": "^9.39.2",
66
+ "eslint-config-sukka": "^8.0.6",
67
+ "eslint-formatter-sukka": "^8.0.6",
68
+ "typescript": "^5.9.3",
69
+ "webpack": "^5.104.1",
70
+ "webpack-dev-server": "^5.2.2"
71
+ },
72
+ "peerDependencies": {
73
+ "webpack": "*",
74
+ "webpack-dev-server": "*"
75
+ },
76
+ "peerDependenciesMeta": {
77
+ "webpack-dev-server": {
78
+ "optional": true
79
+ }
80
+ },
81
+ "scripts": {
82
+ "lint": "eslint --format=sukka .",
83
+ "build": "bunchee",
84
+ "prerelease": "pnpm run lint && pnpm run build",
85
+ "release": "bumpp -r --all --commit \"release: %s\" --tag \"%s\""
86
+ }
87
+ }