@frontfamily/cli 0.1.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/dist/index.js +21198 -0
- package/package.json +52 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@frontfamily/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Eject production-ready UI pattern components across React, Vue, and Angular frameworks",
|
|
5
|
+
"author": "ch-bas",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/ch-bas/frontfamily",
|
|
10
|
+
"directory": "packages/cli"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"frontfamily",
|
|
14
|
+
"ui",
|
|
15
|
+
"components",
|
|
16
|
+
"react",
|
|
17
|
+
"vue",
|
|
18
|
+
"angular",
|
|
19
|
+
"mui",
|
|
20
|
+
"chakra",
|
|
21
|
+
"antd",
|
|
22
|
+
"quasar",
|
|
23
|
+
"mantine",
|
|
24
|
+
"eui",
|
|
25
|
+
"migration",
|
|
26
|
+
"eject",
|
|
27
|
+
"scaffold"
|
|
28
|
+
],
|
|
29
|
+
"bin": {
|
|
30
|
+
"frontfamily": "./dist/index.js"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"prebuild": "tsx scripts/bundle-templates.ts",
|
|
37
|
+
"build": "tsup src/index.ts --format cjs --clean",
|
|
38
|
+
"dev": "tsx scripts/bundle-templates.ts && tsup src/index.ts --watch",
|
|
39
|
+
"prepublishOnly": "npm run build"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@clack/prompts": "^0.8.2",
|
|
43
|
+
"commander": "^12.0.0",
|
|
44
|
+
"picocolors": "^1.0.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/node": "^20.0.0",
|
|
48
|
+
"tsx": "^4.0.0",
|
|
49
|
+
"tsup": "^8.0.2",
|
|
50
|
+
"typescript": "^5.0.0"
|
|
51
|
+
}
|
|
52
|
+
}
|