@empjs/cli 3.12.5-beta.1 → 3.12.5-beta.3
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 +29 -14
package/package.json
CHANGED
|
@@ -1,11 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empjs/cli",
|
|
3
|
-
"version": "3.12.5-beta.
|
|
3
|
+
"version": "3.12.5-beta.3",
|
|
4
4
|
"description": "emp",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"files": [
|
|
8
|
-
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"bin",
|
|
10
|
+
"resource",
|
|
11
|
+
"template",
|
|
12
|
+
"types",
|
|
13
|
+
"tsconfig"
|
|
14
|
+
],
|
|
15
|
+
"maintainers": [
|
|
16
|
+
"xuhongbin",
|
|
17
|
+
"ckken",
|
|
18
|
+
"doerme"
|
|
19
|
+
],
|
|
9
20
|
"repository": {
|
|
10
21
|
"type": "git",
|
|
11
22
|
"url": "git+https://github.com/empjs/emp.git",
|
|
@@ -15,7 +26,11 @@
|
|
|
15
26
|
"access": "public",
|
|
16
27
|
"registry": "https://registry.npmjs.org/"
|
|
17
28
|
},
|
|
18
|
-
"keywords": [
|
|
29
|
+
"keywords": [
|
|
30
|
+
"rspack",
|
|
31
|
+
"rust",
|
|
32
|
+
"typescript"
|
|
33
|
+
],
|
|
19
34
|
"bin": {
|
|
20
35
|
"emp": "./bin/emp.js"
|
|
21
36
|
},
|
|
@@ -61,13 +76,6 @@
|
|
|
61
76
|
"default": "./types/react/index.d.ts"
|
|
62
77
|
}
|
|
63
78
|
},
|
|
64
|
-
"scripts": {
|
|
65
|
-
"dev": "tsup --watch --env.ENV dev",
|
|
66
|
-
"build": "tsup --env.ENV prod",
|
|
67
|
-
"dev-rs": "rslib build --watch --env-mode development",
|
|
68
|
-
"build-rs": "rslib build --env-mode production",
|
|
69
|
-
"ph": "pnpm publish --no-git-checks"
|
|
70
|
-
},
|
|
71
79
|
"engines": {
|
|
72
80
|
"node": ">=18.0.0"
|
|
73
81
|
},
|
|
@@ -88,7 +96,6 @@
|
|
|
88
96
|
"vue": "^3.5.21"
|
|
89
97
|
},
|
|
90
98
|
"dependencies": {
|
|
91
|
-
"@empjs/chain": "workspace:*",
|
|
92
99
|
"@rsdoctor/rspack-plugin": "1.5.0",
|
|
93
100
|
"@rspack/core": "1.7.4",
|
|
94
101
|
"@rspack/dev-server": "1.2.1",
|
|
@@ -115,6 +122,14 @@
|
|
|
115
122
|
"serve-static": "2.2.0",
|
|
116
123
|
"ts-checker-rspack-plugin": "1.1.6",
|
|
117
124
|
"typescript-plugin-css-modules": "5.2.0",
|
|
118
|
-
"webpack-bundle-analyzer": "4.10.2"
|
|
125
|
+
"webpack-bundle-analyzer": "4.10.2",
|
|
126
|
+
"@empjs/chain": "1.1.0"
|
|
127
|
+
},
|
|
128
|
+
"scripts": {
|
|
129
|
+
"dev": "tsup --watch --env.ENV dev",
|
|
130
|
+
"build": "tsup --env.ENV prod",
|
|
131
|
+
"dev-rs": "rslib build --watch --env-mode development",
|
|
132
|
+
"build-rs": "rslib build --env-mode production",
|
|
133
|
+
"ph": "pnpm publish --no-git-checks"
|
|
119
134
|
}
|
|
120
|
-
}
|
|
135
|
+
}
|