mycontext-cli 4.1.2 โ†’ 4.1.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.
package/dist/cli.js CHANGED
File without changes
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mycontext-cli",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "description": "CLI tool for spec-driven development - Generate comprehensive context, visual screens, and scaffolding for AI-powered coding",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {
package/package.json CHANGED
@@ -1,30 +1,12 @@
1
1
  {
2
2
  "name": "mycontext-cli",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "description": "CLI tool for spec-driven development - Generate comprehensive context, visual screens, and scaffolding for AI-powered coding",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {
7
7
  "mycontext-cli": "dist/cli.js",
8
8
  "mycontext": "dist/cli.js"
9
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/ && ([ \"$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
10
  "keywords": [
29
11
  "mycontext",
30
12
  "mycontext-ai",
@@ -48,7 +30,6 @@
48
30
  "url": "https://github.com/farajabien/mycontext-cli/issues"
49
31
  },
50
32
  "dependencies": {
51
- "@myycontext/core": "workspace:*",
52
33
  "@anthropic-ai/claude-agent-sdk": "^0.1.1",
53
34
  "@google-cloud/vertexai": "^1.10.0",
54
35
  "@google/generative-ai": "^0.24.1",
@@ -78,7 +59,8 @@
78
59
  "sonner": "^2.0.7",
79
60
  "unified": "^11.0.5",
80
61
  "uuid": "^9.0.1",
81
- "zod": "^3.25.76"
62
+ "zod": "^3.25.76",
63
+ "@myycontext/core": "1.0.3"
82
64
  },
83
65
  "devDependencies": {
84
66
  "@types/fs-extra": "^11.0.4",
@@ -104,5 +86,21 @@
104
86
  "README.md",
105
87
  "package.json"
106
88
  ],
107
- "packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
89
+ "scripts": {
90
+ "build": "npm run build:clean && npm run build:compile && npm run build:alias && npm run build:copy",
91
+ "build:clean": "rm -rf dist && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐Ÿงน Cleaned build directory')",
92
+ "build:compile": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐Ÿ”จ Compiling TypeScript...') && tsc --noEmitOnError false",
93
+ "build:alias": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐Ÿ”— Resolving path aliases...') && tsc-alias",
94
+ "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/ && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo 'โœ… Build complete')",
95
+ "dev": "ts-node src/cli.ts",
96
+ "start": "node dist/cli.js",
97
+ "watch": "tsc --watch --pretty",
98
+ "test": "jest --passWithNoTests",
99
+ "test:watch": "jest --watch --passWithNoTests",
100
+ "test:coverage": "jest --coverage --passWithNoTests",
101
+ "test:integration": "jest --testPathPattern=integration --passWithNoTests",
102
+ "test:unit": "jest --testPathPattern=unit --passWithNoTests",
103
+ "lint": "eslint src/**/*.ts --quiet",
104
+ "lint:fix": "eslint src/**/*.ts --fix --quiet"
105
+ }
108
106
  }