@jay-framework/jay-stack-cli 0.19.6 → 0.19.8
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/agent-kit-template/INSTRUCTIONS.md +37 -0
- package/agent-kit-template/contracts/GUIDE.md +70 -0
- package/agent-kit-template/contracts/component-contracts.md +82 -0
- package/agent-kit-template/contracts/examples/cart-indicator.md +60 -0
- package/agent-kit-template/contracts/examples/category-list.md +77 -0
- package/agent-kit-template/contracts/examples/composing-contracts.md +100 -0
- package/agent-kit-template/contracts/examples/mini-cart.md +43 -0
- package/agent-kit-template/contracts/examples/product-card.md +70 -0
- package/agent-kit-template/contracts/examples/product-page.md +125 -0
- package/agent-kit-template/contracts/linked-contracts.md +75 -0
- package/agent-kit-template/contracts/page-contracts.md +73 -0
- package/agent-kit-template/contracts/syntax.md +190 -0
- package/agent-kit-template/designer/INSTRUCTIONS.md +10 -0
- package/agent-kit-template/designer/jay-html-components.md +11 -13
- package/agent-kit-template/designer/jay-html-template-syntax.md +1 -0
- package/agent-kit-template/designer/script-tags.md +83 -0
- package/agent-kit-template/developer/INSTRUCTIONS.md +15 -14
- package/agent-kit-template/developer/page-contracts.md +1 -1
- package/agent-kit-template/plugin/INSTRUCTIONS.md +20 -19
- package/agent-kit-template/plugin/contracts-guide.md +4 -2
- package/dist/index.js +27 -1
- package/package.json +11 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jay-framework/jay-stack-cli",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.8",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -24,15 +24,15 @@
|
|
|
24
24
|
"test:watch": "vitest"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@jay-framework/compiler-jay-html": "^0.19.
|
|
28
|
-
"@jay-framework/compiler-shared": "^0.19.
|
|
29
|
-
"@jay-framework/dev-server": "^0.19.
|
|
30
|
-
"@jay-framework/editor-server": "^0.19.
|
|
31
|
-
"@jay-framework/fullstack-component": "^0.19.
|
|
32
|
-
"@jay-framework/logger": "^0.19.
|
|
33
|
-
"@jay-framework/plugin-validator": "^0.19.
|
|
34
|
-
"@jay-framework/production-server": "^0.19.
|
|
35
|
-
"@jay-framework/stack-server-runtime": "^0.19.
|
|
27
|
+
"@jay-framework/compiler-jay-html": "^0.19.8",
|
|
28
|
+
"@jay-framework/compiler-shared": "^0.19.8",
|
|
29
|
+
"@jay-framework/dev-server": "^0.19.8",
|
|
30
|
+
"@jay-framework/editor-server": "^0.19.8",
|
|
31
|
+
"@jay-framework/fullstack-component": "^0.19.8",
|
|
32
|
+
"@jay-framework/logger": "^0.19.8",
|
|
33
|
+
"@jay-framework/plugin-validator": "^0.19.8",
|
|
34
|
+
"@jay-framework/production-server": "^0.19.8",
|
|
35
|
+
"@jay-framework/stack-server-runtime": "^0.19.8",
|
|
36
36
|
"chalk": "^4.1.2",
|
|
37
37
|
"commander": "^14.0.0",
|
|
38
38
|
"express": "^5.0.1",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"yaml": "^2.3.4"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@jay-framework/dev-environment": "^0.19.
|
|
46
|
+
"@jay-framework/dev-environment": "^0.19.8",
|
|
47
47
|
"@types/express": "^5.0.2",
|
|
48
48
|
"@types/node": "^22.15.21",
|
|
49
49
|
"nodemon": "^3.0.3",
|