mycontext-cli 4.2.12 โ†’ 4.2.14

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 (42) hide show
  1. package/README.md +46 -605
  2. package/dist/cli.js +8 -0
  3. package/dist/cli.js.map +1 -1
  4. package/dist/commands/build-app.d.ts +1 -0
  5. package/dist/commands/build-app.d.ts.map +1 -1
  6. package/dist/commands/build-app.js +2 -1
  7. package/dist/commands/build-app.js.map +1 -1
  8. package/dist/commands/build-feature.d.ts +5 -0
  9. package/dist/commands/build-feature.d.ts.map +1 -0
  10. package/dist/commands/build-feature.js +39 -0
  11. package/dist/commands/build-feature.js.map +1 -0
  12. package/dist/commands/init.d.ts +0 -3
  13. package/dist/commands/init.d.ts.map +1 -1
  14. package/dist/commands/init.js +24 -7
  15. package/dist/commands/init.js.map +1 -1
  16. package/dist/commands/plan.d.ts +5 -0
  17. package/dist/commands/plan.d.ts.map +1 -0
  18. package/dist/commands/plan.js +32 -0
  19. package/dist/commands/plan.js.map +1 -0
  20. package/dist/commands/test.d.ts +4 -0
  21. package/dist/commands/test.d.ts.map +1 -1
  22. package/dist/commands/test.js +90 -0
  23. package/dist/commands/test.js.map +1 -1
  24. package/dist/commands/vision-test.d.ts +6 -4
  25. package/dist/commands/vision-test.d.ts.map +1 -1
  26. package/dist/commands/vision-test.js +81 -22
  27. package/dist/commands/vision-test.js.map +1 -1
  28. package/dist/generator/scaffold.d.ts +11 -0
  29. package/dist/generator/scaffold.d.ts.map +1 -0
  30. package/dist/generator/scaffold.js +107 -0
  31. package/dist/generator/scaffold.js.map +1 -0
  32. package/dist/generator/templates/nextjs.d.ts +11 -0
  33. package/dist/generator/templates/nextjs.d.ts.map +1 -0
  34. package/dist/generator/templates/nextjs.js +499 -0
  35. package/dist/generator/templates/nextjs.js.map +1 -0
  36. package/dist/planner/index.d.ts +11 -0
  37. package/dist/planner/index.d.ts.map +1 -0
  38. package/dist/planner/index.js +142 -0
  39. package/dist/planner/index.js.map +1 -0
  40. package/package.json +3 -5
  41. package/dist/README.md +0 -645
  42. package/dist/package.json +0 -111
package/dist/package.json DELETED
@@ -1,111 +0,0 @@
1
- {
2
- "name": "mycontext-cli",
3
- "version": "4.2.12",
4
- "description": "CLI tool for spec-driven development - Generate comprehensive context, visual screens, and scaffolding for AI-powered coding",
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:alias && 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:alias": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐Ÿ”— Resolving path aliases...') && tsc-alias",
15
- "build:copy": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐Ÿ“‹ Copying config files...') && cp -r src/config dist/ && cp -r src/templates dist/ && cp package.json dist/ && cp README.md dist/ && chmod +x dist/cli.js && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo 'โœ… Build complete')",
16
- "dev": "ts-node src/cli.ts",
17
- "start": "node dist/cli.js",
18
- "watch": "tsc --watch --pretty",
19
- "test": "jest --passWithNoTests",
20
- "test:watch": "jest --watch --passWithNoTests",
21
- "test:coverage": "jest --coverage --passWithNoTests",
22
- "test:integration": "jest --testPathPattern=integration --passWithNoTests",
23
- "test:unit": "jest --testPathPattern=unit --passWithNoTests",
24
- "lint": "eslint src/**/*.ts --quiet",
25
- "lint:fix": "eslint src/**/*.ts --fix --quiet",
26
- "prepublishOnly": "echo 'Skipping tests and lint for now' && npm run build"
27
- },
28
- "keywords": [
29
- "mycontext",
30
- "mycontext-ai",
31
- "mycontext-cli",
32
- "mycontext-components",
33
- "ai",
34
- "components",
35
- "shadcn",
36
- "nextjs",
37
- "typescript",
38
- "react"
39
- ],
40
- "author": "MyContext",
41
- "license": "MIT",
42
- "repository": {
43
- "type": "git",
44
- "url": "git+https://github.com/farajabien/mycontext-cli.git",
45
- "directory": "apps/cli"
46
- },
47
- "homepage": "https://github.com/farajabien/mycontext-cli#readme",
48
- "bugs": {
49
- "url": "https://github.com/farajabien/mycontext-cli/issues"
50
- },
51
- "dependencies": {
52
- "@anthropic-ai/claude-agent-sdk": "^0.1.1",
53
- "@google-cloud/vertexai": "^1.10.0",
54
- "@google/generative-ai": "^0.24.1",
55
- "@huggingface/inference": "^4.11.1",
56
- "@modelcontextprotocol/sdk": "^1.26.0",
57
- "@myycontext/core": "workspace:*",
58
- "@playwright/test": "^1.58.2",
59
- "@types/figlet": "^1.7.0",
60
- "@types/handlebars": "^4.1.0",
61
- "axios": "^1.6.0",
62
- "chalk": "^5.6.2",
63
- "commander": "^11.1.0",
64
- "diff": "^8.0.2",
65
- "dotenv": "^17.2.3",
66
- "dotenv-expand": "^12.0.3",
67
- "figlet": "^1.9.3",
68
- "fs-extra": "^11.3.2",
69
- "fuse.js": "^7.1.0",
70
- "glob": "^10.3.10",
71
- "gradient-string": "^3.0.0",
72
- "handlebars": "^4.7.8",
73
- "inquirer": "^9.2.12",
74
- "mdast-util-to-markdown": "^2.1.2",
75
- "node-fetch": "^2.7.0",
76
- "openai": "^6.2.0",
77
- "ora": "^7.0.1",
78
- "playwright": "^1.58.2",
79
- "prompts": "^2.4.2",
80
- "remark-parse": "^11.0.0",
81
- "sonner": "^2.0.7",
82
- "unified": "^11.0.5",
83
- "uuid": "^9.0.1",
84
- "zod": "^3.25.76"
85
- },
86
- "devDependencies": {
87
- "@types/fs-extra": "^11.0.4",
88
- "@types/glob": "^8.1.0",
89
- "@types/inquirer": "^9.0.7",
90
- "@types/jest": "^29.0.0",
91
- "@types/node": "^20.0.0",
92
- "@types/node-fetch": "^2.6.13",
93
- "@types/prompts": "^2.4.9",
94
- "@types/uuid": "^9.0.7",
95
- "jest": "^29.0.0",
96
- "ts-jest": "^29.4.0",
97
- "ts-node": "^10.9.0",
98
- "tsc-alias": "^1.8.16",
99
- "tsx": "^4.20.6",
100
- "typescript": "^5.0.0"
101
- },
102
- "engines": {
103
- "node": ">=18"
104
- },
105
- "files": [
106
- "dist/",
107
- "README.md",
108
- "package.json"
109
- ],
110
- "packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
111
- }