@memoraone/mcp 0.1.16 → 0.1.18

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memoraone/mcp",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs",
6
6
  "bin": {
@@ -13,6 +13,15 @@
13
13
  "publishConfig": {
14
14
  "access": "public"
15
15
  },
16
+ "scripts": {
17
+ "build": "tsup && node scripts/writeBinWrapper.cjs",
18
+ "prepublishOnly": "pnpm run build",
19
+ "dev": "tsx src/cli.ts",
20
+ "lint": "eslint .",
21
+ "lint:contracts": "node scripts/lint-contracts.cjs",
22
+ "test": "pnpm run lint:contracts && node --import=tsx --test test/*.test.js",
23
+ "validate:auth": "node --import=tsx --test test/memoraClient.test.js"
24
+ },
16
25
  "dependencies": {
17
26
  "@modelcontextprotocol/sdk": "^1.25.1",
18
27
  "dotenv": "^16.4.5",
@@ -22,10 +31,5 @@
22
31
  "tsx": "^4.21.0",
23
32
  "tsup": "^8.5.1",
24
33
  "typescript": "^5.9.2"
25
- },
26
- "scripts": {
27
- "build": "tsup && node scripts/writeBinWrapper.cjs",
28
- "dev": "tsx src/index.ts",
29
- "lint": "eslint ."
30
34
  }
31
- }
35
+ }