@manifesto-ai/compiler 3.3.1 → 3.4.0
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/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manifesto-ai/compiler",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "Manifesto Compiler - MEL (Manifesto Expression Language) to DomainSchema compiler",
|
|
5
5
|
"author": "eggplantiny <eggplantiny@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"@anthropic-ai/sdk": "^0.26.0",
|
|
64
|
-
"@manifesto-ai/core": "^2.
|
|
64
|
+
"@manifesto-ai/core": "^2.12.0",
|
|
65
65
|
"openai": "^4.0.0",
|
|
66
66
|
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
|
|
67
67
|
"zod": "^4.3.6"
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"vitest": "^4.1.2",
|
|
98
98
|
"webpack": "^5.105.4",
|
|
99
99
|
"zod": "^4.3.6",
|
|
100
|
-
"@manifesto-ai/core": "2.
|
|
100
|
+
"@manifesto-ai/core": "2.12.0"
|
|
101
101
|
},
|
|
102
102
|
"files": [
|
|
103
103
|
"dist"
|
|
@@ -106,9 +106,9 @@
|
|
|
106
106
|
"build": "rm -rf dist && tsup && tsc -p tsconfig.build.json --emitDeclarationOnly --declarationMap false --outDir dist",
|
|
107
107
|
"clean": "rm -rf dist",
|
|
108
108
|
"lint": "echo 'lint not configured'",
|
|
109
|
-
"test": "vitest run",
|
|
110
|
-
"test:coverage": "vitest run --coverage",
|
|
111
|
-
"test:watch": "vitest",
|
|
109
|
+
"test": "node ../../node_modules/vitest/vitest.mjs run",
|
|
110
|
+
"test:coverage": "node ../../node_modules/vitest/vitest.mjs run --coverage",
|
|
111
|
+
"test:watch": "node ../../node_modules/vitest/vitest.mjs",
|
|
112
112
|
"example": "npx tsx examples/simple-compile.ts",
|
|
113
113
|
"cli": "node ./dist/cli/index.js"
|
|
114
114
|
}
|