mycontext-cli 1.0.86 โ†’ 1.0.88

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/package.json +83 -0
  2. package/package.json +2 -2
@@ -0,0 +1,83 @@
1
+ {
2
+ "name": "mycontext-cli",
3
+ "version": "1.0.88",
4
+ "description": "MyContext CLI - AI-powered component generation with interactive build strategy planning, shadcn/ui and Next.js 15 integration",
5
+ "main": "dist/cli.js",
6
+ "bin": {
7
+ "mycontext-cli": "dist/cli.js",
8
+ "mycontext": "dist/cli.js"
9
+ },
10
+ "scripts": {
11
+ "build": "npm run build:clean && npm run build:compile && npm run build:copy",
12
+ "build:clean": "rm -rf dist && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐Ÿงน Cleaned build directory')",
13
+ "build:compile": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐Ÿ”จ Compiling TypeScript...') && tsc --noEmitOnError false",
14
+ "build:copy": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐Ÿ“‹ Copying config files...') && cp -r src/config dist/ && cp package.json dist/ && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo 'โœ… Build complete')",
15
+ "dev": "ts-node src/cli.ts",
16
+ "start": "node dist/cli.js",
17
+ "watch": "tsc --watch --pretty",
18
+ "test": "jest --passWithNoTests",
19
+ "test:watch": "jest --watch --passWithNoTests",
20
+ "test:coverage": "jest --coverage --passWithNoTests",
21
+ "test:integration": "jest --testPathPattern=integration --passWithNoTests",
22
+ "test:unit": "jest --testPathPattern=unit --passWithNoTests",
23
+ "lint": "eslint src/**/*.ts --quiet",
24
+ "lint:fix": "eslint src/**/*.ts --fix --quiet",
25
+ "prepublishOnly": "echo 'Skipping tests and lint for now' && npm run build"
26
+ },
27
+ "keywords": [
28
+ "mycontext",
29
+ "mycontext-ai",
30
+ "mycontext-cli",
31
+ "mycontext-components",
32
+ "ai",
33
+ "components",
34
+ "shadcn",
35
+ "nextjs",
36
+ "typescript",
37
+ "react"
38
+ ],
39
+ "author": "MyContext",
40
+ "license": "MIT",
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/farajabien/mycontext.git"
44
+ },
45
+ "homepage": "https://docs.mycontext.fbien.com",
46
+ "bugs": {
47
+ "url": "https://github.com/farajabien/mycontext/issues"
48
+ },
49
+ "dependencies": {
50
+ "axios": "^1.6.0",
51
+ "chalk": "^5.3.0",
52
+ "commander": "^11.1.0",
53
+ "fs-extra": "^11.1.1",
54
+ "glob": "^10.3.10",
55
+ "inquirer": "^9.2.12",
56
+ "node-fetch": "^2.7.0",
57
+ "ora": "^7.0.1",
58
+ "prompts": "^2.4.2",
59
+ "sonner": "^2.0.7",
60
+ "uuid": "^9.0.1"
61
+ },
62
+ "devDependencies": {
63
+ "@types/fs-extra": "^11.0.4",
64
+ "@types/glob": "^8.1.0",
65
+ "@types/inquirer": "^9.0.7",
66
+ "@types/jest": "^29.0.0",
67
+ "@types/node": "^20.0.0",
68
+ "@types/node-fetch": "^2.6.13",
69
+ "@types/prompts": "^2.4.9",
70
+ "@types/uuid": "^9.0.7",
71
+ "jest": "^29.0.0",
72
+ "ts-jest": "^29.4.0",
73
+ "ts-node": "^10.9.0",
74
+ "typescript": "^5.0.0"
75
+ },
76
+ "engines": {
77
+ "node": ">=18.0.0"
78
+ },
79
+ "files": [
80
+ "dist/",
81
+ "README.md"
82
+ ]
83
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mycontext-cli",
3
- "version": "1.0.86",
3
+ "version": "1.0.88",
4
4
  "description": "MyContext CLI - AI-powered component generation with interactive build strategy planning, shadcn/ui and Next.js 15 integration",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {
@@ -11,7 +11,7 @@
11
11
  "build": "npm run build:clean && npm run build:compile && npm run build:copy",
12
12
  "build:clean": "rm -rf dist && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐Ÿงน Cleaned build directory')",
13
13
  "build:compile": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐Ÿ”จ Compiling TypeScript...') && tsc --noEmitOnError false",
14
- "build:copy": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐Ÿ“‹ Copying config files...') && cp -r src/config dist/ && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo 'โœ… Build complete')",
14
+ "build:copy": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐Ÿ“‹ Copying config files...') && cp -r src/config dist/ && cp package.json dist/ && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo 'โœ… Build complete')",
15
15
  "dev": "ts-node src/cli.ts",
16
16
  "start": "node dist/cli.js",
17
17
  "watch": "tsc --watch --pretty",