create-ec-app 0.0.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 ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "create-ec-app",
3
+ "version": "0.0.1",
4
+ "description": "Unified CLI tool to create different types of EC applications: Webresource, Portal, Power Pages, and Mobile apps.",
5
+ "main": "dist/index.js",
6
+ "type": "module",
7
+ "bin": {
8
+ "create-ec-app": "bin/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "dev": "tsc --watch",
13
+ "test": "node bin/index.js test-app",
14
+ "prepublishOnly": "npm run build"
15
+ },
16
+ "keywords": [
17
+ "react",
18
+ "vite",
19
+ "nextjs",
20
+ "expo",
21
+ "kendo",
22
+ "tailwind",
23
+ "cli",
24
+ "powerpages",
25
+ "portal",
26
+ "mobile",
27
+ "webresource",
28
+ "dynamics",
29
+ "ec"
30
+ ],
31
+ "author": "Schalk Conradie",
32
+ "license": "MIT",
33
+ "dependencies": {
34
+ "chalk": "^5.3.0",
35
+ "fs-extra": "^11.2.0",
36
+ "inquirer": "^12.6.3",
37
+ "ora": "^8.0.1"
38
+ },
39
+ "devDependencies": {
40
+ "@types/node": "^22.8.6",
41
+ "@types/fs-extra": "^11.0.4",
42
+ "@types/inquirer": "^9.0.7",
43
+ "typescript": "^5.6.3"
44
+ },
45
+ "engines": {
46
+ "node": ">=18.0.0"
47
+ },
48
+ "files": [
49
+ "dist/**/*",
50
+ "bin/**/*"
51
+ ],
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "https://github.com/Enterprisecloud-Pty-Ltd/create-ec-app.git"
55
+ },
56
+ "bugs": {
57
+ "url": "https://github.com/Enterprisecloud-Pty-Ltd/create-ec-app/issues"
58
+ },
59
+ "homepage": "https://github.com/Enterprisecloud-Pty-Ltd/create-ec-app#readme"
60
+ }