@promakeai/cli 0.9.2 → 0.9.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.
Files changed (2) hide show
  1. package/dist/index.js +338 -320
  2. package/package.json +57 -56
package/package.json CHANGED
@@ -1,57 +1,58 @@
1
- {
2
- "name": "@promakeai/cli",
3
- "version": "0.9.2",
4
- "type": "module",
5
- "bin": {
6
- "promake": "dist/index.js"
7
- },
8
- "files": [
9
- "dist/index.js",
10
- "dist/registry",
11
- "template"
12
- ],
13
- "scripts": {
14
- "dev": "bun run src/index.ts",
15
- "dev:app": "cd dev && bun run dev",
16
- "dev:populate": "bun run scripts/populate-dev.ts",
17
- "dev:fresh": "bun run dev:populate && bun run dev:app",
18
- "playground:create": "rm -rf playground && bun run dev -- create playground --template empty --pm bun",
19
- "playground:reset": "bun run playground:create",
20
- "playground:add": "cd playground && bun run ../src/index.ts add",
21
- "playground:ecommerce": "rm -rf playground && bun run dev -- create playground --template ecommerce --pm bun",
22
- "clean": "rimraf dist",
23
- "build": "bun run clean && bun run build:cli && bun run build:registry",
24
- "build:cli": "bun build src/index.ts --outdir dist --target node --minify",
25
- "build:registry": "bun run scripts/build-registry.ts",
26
- "typecheck": "tsc --noEmit",
27
- "prepublishOnly": "bun run build",
28
- "test": "bun test",
29
- "test:e2e": "bun run scripts/e2e-test.ts",
30
- "test:watch": "bun test --watch",
31
- "test:coverage": "bun test --coverage",
32
- "release": "bun run build && npm publish --access public"
33
- },
34
- "dependencies": {
35
- "adm-zip": "^0.5.16",
36
- "archiver": "^7.0.1",
37
- "chalk": "^5.3.0",
38
- "commander": "^12.1.0",
39
- "culori": "^4.0.2",
40
- "dotenv": "^17.2.3",
41
- "fs-extra": "^11.3.3",
42
- "glob": "^11.0.0",
43
- "ora": "^8.1.1",
44
- "prompts": "^2.4.2",
45
- "puppeteer-core": "^24.36.0"
46
- },
47
- "devDependencies": {
48
- "@types/archiver": "^7.0.0",
49
- "@types/bun": "^1.1.14",
50
- "@types/culori": "^4.0.1",
51
- "@types/fs-extra": "^11.0.4",
52
- "@types/node": "^22.10.2",
53
- "@types/prompts": "^2.4.9",
54
- "rimraf": "6.0.1",
55
- "typescript": "^5.7.2"
56
- }
1
+ {
2
+ "name": "@promakeai/cli",
3
+ "version": "0.9.3",
4
+ "type": "module",
5
+ "bin": {
6
+ "promake": "dist/index.js"
7
+ },
8
+ "files": [
9
+ "dist/index.js",
10
+ "dist/registry",
11
+ "template"
12
+ ],
13
+ "scripts": {
14
+ "dev": "bun run src/index.ts",
15
+ "dev:app": "cd dev && bun run dev",
16
+ "dev:populate": "bun run scripts/populate-dev.ts",
17
+ "dev:fresh": "bun run dev:populate && bun run dev:app",
18
+ "playground:create": "rm -rf playground && bun run dev -- create playground --template empty --pm bun",
19
+ "playground:reset": "bun run playground:create",
20
+ "playground:add": "cd playground && bun run ../src/index.ts add",
21
+ "playground:ecommerce": "rm -rf playground && bun run dev -- create playground --template ecommerce --pm bun",
22
+ "clean": "rimraf dist",
23
+ "build": "bun run clean && bun run build:cli && bun run build:registry",
24
+ "build:cli": "bun build src/index.ts --outdir dist --target node --minify",
25
+ "build:registry": "bun run scripts/build-registry.ts",
26
+ "typecheck": "tsc --noEmit",
27
+ "prepublishOnly": "bun run build",
28
+ "test": "bun test",
29
+ "test:e2e": "bun run scripts/e2e-test.ts",
30
+ "test:watch": "bun test --watch",
31
+ "test:coverage": "bun test --coverage",
32
+ "release": "bun run build && npm publish --access public"
33
+ },
34
+ "dependencies": {
35
+ "adm-zip": "^0.5.16",
36
+ "archiver": "^7.0.1",
37
+ "axios": "^1.13.6",
38
+ "chalk": "^5.3.0",
39
+ "commander": "^12.1.0",
40
+ "culori": "^4.0.2",
41
+ "dotenv": "^17.2.3",
42
+ "fs-extra": "^11.3.3",
43
+ "glob": "^11.0.0",
44
+ "ora": "^8.1.1",
45
+ "prompts": "^2.4.2",
46
+ "puppeteer-core": "^24.36.0"
47
+ },
48
+ "devDependencies": {
49
+ "@types/archiver": "^7.0.0",
50
+ "@types/bun": "^1.1.14",
51
+ "@types/culori": "^4.0.1",
52
+ "@types/fs-extra": "^11.0.4",
53
+ "@types/node": "^22.10.2",
54
+ "@types/prompts": "^2.4.9",
55
+ "rimraf": "6.0.1",
56
+ "typescript": "^5.7.2"
57
+ }
57
58
  }