matimo 0.1.4 → 0.1.5

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 (1) hide show
  1. package/package.json +6 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matimo",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "A framework-agnostic SDK with pre-built providers, a skills knowledge layer, MCP out of the box, and agents that autonomously build new capabilities — governed by a policy engine you control.",
5
5
  "main": "packages/core/dist/index.js",
6
6
  "types": "packages/core/dist/index.d.ts",
@@ -57,8 +57,8 @@
57
57
  "access": "public"
58
58
  },
59
59
  "dependencies": {
60
- "@matimo/cli": "0.1.3",
61
- "@matimo/core": "0.1.4"
60
+ "@matimo/cli": "0.1.5",
61
+ "@matimo/core": "0.1.5"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@commitlint/cli": "^20.3.1",
@@ -82,8 +82,10 @@
82
82
  "scripts": {
83
83
  "build": "pnpm --filter='./packages/**' build",
84
84
  "watch": "pnpm --filter='./packages/**' watch",
85
+ "pretest": "pnpm build",
85
86
  "test": "jest",
86
87
  "test:watch": "jest --watch",
88
+ "pretest:coverage": "pnpm build",
87
89
  "test:coverage": "jest --coverage",
88
90
  "lint": "eslint packages --ext .ts",
89
91
  "lint:fix": "eslint packages --ext .ts --fix",
@@ -91,6 +93,7 @@
91
93
  "format:check": "prettier --check \"packages/*/src/**/*.ts\" \"packages/*/test/**/*.ts\" \"examples/**/*.ts\"",
92
94
  "commitlint": "commitlint --from HEAD~1 --to HEAD",
93
95
  "validate-tools": "tsx scripts/validate-tool.ts",
96
+ "generate:composio": "tsx packages/composio/scripts/generate-tools.ts",
94
97
  "test-tools": "jest packages/core/test/fixtures/tools",
95
98
  "dev": "tsx packages/core/src/index.ts",
96
99
  "clean": "rm -rf dist coverage && find packages -type f \\( -name '*.js' -o -name '*.d.ts' -o -name '*.js.map' -o -name '*.d.ts.map' \\) -not -path '*/dist/*' -not -path '*/node_modules/*' -delete"