mycontext-cli 4.2.15 โ 4.2.16
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/README.md +1 -1
- package/package.json +23 -24
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,30 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mycontext-cli",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.16",
|
|
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/ && 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
10
|
"keywords": [
|
|
29
11
|
"mycontext",
|
|
30
12
|
"mycontext-ai",
|
|
@@ -54,7 +36,6 @@
|
|
|
54
36
|
"@google/generative-ai": "^0.24.1",
|
|
55
37
|
"@huggingface/inference": "^4.11.1",
|
|
56
38
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
57
|
-
"@myycontext/core": "workspace:*",
|
|
58
39
|
"@playwright/test": "^1.58.2",
|
|
59
40
|
"@types/figlet": "^1.7.0",
|
|
60
41
|
"@types/handlebars": "^4.1.0",
|
|
@@ -81,7 +62,8 @@
|
|
|
81
62
|
"sonner": "^2.0.7",
|
|
82
63
|
"unified": "^11.0.5",
|
|
83
64
|
"uuid": "^9.0.1",
|
|
84
|
-
"zod": "^3.25.76"
|
|
65
|
+
"zod": "^3.25.76",
|
|
66
|
+
"@myycontext/core": "1.0.5"
|
|
85
67
|
},
|
|
86
68
|
"devDependencies": {
|
|
87
69
|
"@types/fs-extra": "^11.0.4",
|
|
@@ -103,7 +85,24 @@
|
|
|
103
85
|
"node": ">=18"
|
|
104
86
|
},
|
|
105
87
|
"files": [
|
|
106
|
-
"dist/"
|
|
88
|
+
"dist/",
|
|
89
|
+
"README.md"
|
|
107
90
|
],
|
|
108
|
-
"
|
|
109
|
-
|
|
91
|
+
"scripts": {
|
|
92
|
+
"build": "npm run build:clean && npm run build:compile && npm run build:alias && npm run build:copy",
|
|
93
|
+
"build:clean": "rm -rf dist && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐งน Cleaned build directory')",
|
|
94
|
+
"build:compile": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐จ Compiling TypeScript...') && tsc --noEmitOnError false",
|
|
95
|
+
"build:alias": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐ Resolving path aliases...') && tsc-alias",
|
|
96
|
+
"build:copy": "([ \"$npm_config_loglevel\" = \"silent\" ] || echo '๐ Copying config files...') && cp -r src/config dist/ && cp -r src/templates dist/ && chmod +x dist/cli.js && ([ \"$npm_config_loglevel\" = \"silent\" ] || echo 'โ
Build complete')",
|
|
97
|
+
"dev": "ts-node src/cli.ts",
|
|
98
|
+
"start": "node dist/cli.js",
|
|
99
|
+
"watch": "tsc --watch --pretty",
|
|
100
|
+
"test": "jest --passWithNoTests",
|
|
101
|
+
"test:watch": "jest --watch --passWithNoTests",
|
|
102
|
+
"test:coverage": "jest --coverage --passWithNoTests",
|
|
103
|
+
"test:integration": "jest --testPathPattern=integration --passWithNoTests",
|
|
104
|
+
"test:unit": "jest --testPathPattern=unit --passWithNoTests",
|
|
105
|
+
"lint": "eslint src/**/*.ts --quiet",
|
|
106
|
+
"lint:fix": "eslint src/**/*.ts --fix --quiet"
|
|
107
|
+
}
|
|
108
|
+
}
|