rspkify 0.0.0-beta.0

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 ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "rspkify",
3
+ "version": "0.0.0-beta.0",
4
+ "description": "rspkify - 基于 Rspack 的快速构建工具,支持 TypeScript 和 React",
5
+ "files": [
6
+ "bin",
7
+ "package.json"
8
+ ],
9
+ "bin": {
10
+ "rsify": "bin/main.cjs",
11
+ "rsify-esm": "bin/main.mjs"
12
+ },
13
+ "main": "bin/index.cjs",
14
+ "module": "bin/index.mjs",
15
+ "types": "bin/index.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "import": "./bin/index.mjs",
19
+ "require": "./bin/index.cjs",
20
+ "types": "./bin/index.d.ts"
21
+ }
22
+ },
23
+ "keywords": [
24
+ "rspack",
25
+ "rsify",
26
+ "mdx",
27
+ "react",
28
+ "typescript",
29
+ "build-tool"
30
+ ],
31
+ "author": "",
32
+ "license": "ISC",
33
+ "devDependencies": {
34
+ "@babel/core": "7.28.4",
35
+ "@types/cross-spawn": "6.0.6",
36
+ "@types/fs-extra": "11.0.1"
37
+ },
38
+ "dependencies": {
39
+ "@rspack/core": "^1.3.0",
40
+ "@rspack/dev-server": "^1.1.0",
41
+ "@rspack/plugin-react-refresh": "^1.0.0",
42
+ "webpack-bundle-analyzer": "^5.3.0",
43
+ "@svgr/webpack": "8.1.0",
44
+ "@inquirer/prompts": "7.6.0",
45
+ "commander": "14.0.0",
46
+ "confmix": "0.0.0-beta.10",
47
+ "cross-spawn": "7.0.6",
48
+ "css-loader": "7.1.0",
49
+ "dotenv": "16.4.5",
50
+ "fs-extra": "11.1.1",
51
+ "glob": "10.3.3",
52
+ "import-fresh": "3.3.1",
53
+ "interpret": "3.1.1",
54
+ "json5": "2.2.3",
55
+ "node-aux": "0.0.0-beta.3",
56
+ "postcss": "8.5.6",
57
+ "postcss-loader": "8.1.1",
58
+ "postcss-preset-env": "^10.0.0",
59
+ "postcss-pxtorem": "6.1.0",
60
+ "rechoir": "0.8.0",
61
+ "sass": "1.71.1",
62
+ "sass-loader": "16.0.3",
63
+ "ts-node": "10.9.2",
64
+ "rsify-html-plugin": "0.0.0-beta.1"
65
+ },
66
+ "peerDependencies": {
67
+ "@rspack/core": ">=1.0.0",
68
+ "@rspack/dev-server": ">=1.0.0"
69
+ },
70
+ "optionalDependencies": {},
71
+ "engines": {},
72
+ "scripts": {
73
+ "dev": "cross-env NODE_ENV=development rollup -c rollup.config.ts --watch --bundleConfigAsCjs --configPlugin typescript",
74
+ "build": "cross-env NODE_ENV=production rollup -c rollup.config.ts --bundleConfigAsCjs --configPlugin typescript",
75
+ "clean": "npx rimraf bin node_modules"
76
+ }
77
+ }