apple-notes-mcp 2.5.4 → 2.5.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 (2) hide show
  1. package/build/index.js +0 -0
  2. package/package.json +19 -20
package/build/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apple-notes-mcp",
3
- "version": "2.5.4",
3
+ "version": "2.5.5",
4
4
  "description": "MCP server for Apple Notes - create, search, update, and manage notes via Claude and other AI assistants",
5
5
  "type": "module",
6
6
  "main": "build/index.js",
@@ -13,24 +13,6 @@
13
13
  "README.md",
14
14
  "LICENSE"
15
15
  ],
16
- "scripts": {
17
- "build": "tsc && tsc-alias",
18
- "start": "node build/index.js",
19
- "dev": "tsc --watch",
20
- "test": "vitest run",
21
- "test:watch": "vitest",
22
- "test:coverage": "vitest run --coverage",
23
- "test:integration": "vitest run --config vitest.integration.config.ts",
24
- "test:all": "vitest run && vitest run --config vitest.integration.config.ts",
25
- "lint": "eslint src",
26
- "lint:fix": "eslint src --fix",
27
- "format": "prettier --write src",
28
- "format:check": "prettier --check src",
29
- "typecheck": "tsc --noEmit",
30
- "version": "node scripts/sync-plugin-version.mjs && git add .claude-plugin .agents/plugins codex .hermes-plugin .antigravity-plugin",
31
- "prepublishOnly": "npm run lint && npm run test && npm run build",
32
- "prepare": "husky; npm run build"
33
- },
34
16
  "keywords": [
35
17
  "mcp",
36
18
  "apple-notes",
@@ -64,6 +46,7 @@
64
46
  "zod": "^3.22.4"
65
47
  },
66
48
  "devDependencies": {
49
+ "@eslint/js": "^9.0.0",
67
50
  "@types/node": "^20.0.0",
68
51
  "@types/turndown": "^5.0.6",
69
52
  "@typescript-eslint/eslint-plugin": "^8.0.0",
@@ -88,5 +71,21 @@
88
71
  "eslint --fix",
89
72
  "prettier --write"
90
73
  ]
74
+ },
75
+ "scripts": {
76
+ "build": "tsc && tsc-alias",
77
+ "start": "node build/index.js",
78
+ "dev": "tsc --watch",
79
+ "test": "vitest run",
80
+ "test:watch": "vitest",
81
+ "test:coverage": "vitest run --coverage",
82
+ "test:integration": "vitest run --config vitest.integration.config.ts",
83
+ "test:all": "vitest run && vitest run --config vitest.integration.config.ts",
84
+ "lint": "eslint src",
85
+ "lint:fix": "eslint src --fix",
86
+ "format": "prettier --write src",
87
+ "format:check": "prettier --check src",
88
+ "typecheck": "tsc --noEmit",
89
+ "version": "node scripts/sync-plugin-version.mjs && git add .claude-plugin .agents/plugins codex .hermes-plugin .antigravity-plugin"
91
90
  }
92
- }
91
+ }