@multisystemsuite/create-mf-app 1.0.5

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,51 @@
1
+ {
2
+ "name": "@multisystemsuite/create-mf-app",
3
+ "version": "1.0.5",
4
+ "description": "Production-ready TypeScript CLI to scaffold enterprise microfrontend apps with React, Vite and Module Federation.",
5
+ "license": "MIT",
6
+ "keywords": [
7
+ "microfrontend",
8
+ "module-federation",
9
+ "vite",
10
+ "react",
11
+ "scaffold",
12
+ "cli"
13
+ ],
14
+ "engines": {
15
+ "node": ">=20.0.0"
16
+ },
17
+ "bin": {
18
+ "create-mf-app": "./dist/index.js"
19
+ },
20
+ "type": "commonjs",
21
+ "files": [
22
+ "dist",
23
+ "README.md"
24
+ ],
25
+ "scripts": {
26
+ "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
27
+ "build": "tsup",
28
+ "dev": "node dist/index.js",
29
+ "rebuild": "npm run clean && npm run build",
30
+ "pack:check": "npm pack",
31
+ "publish:dry": "npm run rebuild && npm publish --dry-run",
32
+ "publish:public": "npm run rebuild && npm version patch && npm publish --access public",
33
+ "version:patch": "npm version patch",
34
+ "version:minor": "npm version minor",
35
+ "version:major": "npm version major",
36
+ "release:patch": "npm version patch && npm run publish:public",
37
+ "release:minor": "npm version minor && npm run publish:public",
38
+ "release:major": "npm version major && npm run publish:public"
39
+ },
40
+ "dependencies": {
41
+ "@inquirer/prompts": "^7.3.2",
42
+ "fs-extra": "^11.2.0"
43
+ },
44
+ "devDependencies": {
45
+ "@types/fs-extra": "^11.0.4",
46
+ "@types/node": "^22.13.0",
47
+ "tsup": "^8.5.0",
48
+ "typescript": "^5.8.0"
49
+ },
50
+ "preferGlobal": true
51
+ }