package.json•3.31 kB
{
"name": "joplin-mcp-server",
"version": "1.2.1",
"description": "MCP server for Joplin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"joplin-mcp-server": "dist/bin.js"
},
"scripts": {
"validate": "pnpm format && pnpm lint && pnpm test && pnpm build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint ./src --fix",
"lint:check": "eslint ./src",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"build": "rimraf dist && cross-env NODE_ENV=production tsup",
"build:watch": "tsup --watch",
"build:prod": "SKIP_DTS=true tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm validate",
"ts-types": "tsc",
"inspect": "pnpm build && npx @modelcontextprotocol/inspector dist/index.js",
"start": "pnpm build && npx joplin-mcp-server",
"start:http": "pnpm build && npx joplin-mcp-server --transport http",
"serve": "pnpm build && node dist/index.js",
"serve:http": "pnpm build && node dist/index.js --transport http",
"serve:dev": "tsx watch src/index.ts",
"serve:dev:http": "tsx watch src/index.ts --transport http",
"test:manual:search": "tsx tests/manual/search-notes.test.ts",
"test:manual:read-note": "tsx tests/manual/read-note.test.ts",
"test:manual:create-note": "tsx tests/manual/create-note.test.ts",
"test:manual:create-folder": "tsx tests/manual/create-folder.test.ts",
"test:manual:edit-note": "tsx tests/manual/edit-note.test.ts",
"test:manual:edit-folder": "tsx tests/manual/edit-folder.test.ts",
"test:manual:delete-note": "tsx tests/manual/delete-note.test.ts",
"test:manual:delete-folder": "tsx tests/manual/delete-folder.test.ts",
"test:manual:list-notebooks": "tsx tests/manual/list-notebooks.test.ts"
},
"keywords": [
"mcp",
"joplin"
],
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"author": "Jordan Burke <jordan.burke@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jordanburke/joplin-mcp-server.git"
},
"bugs": {
"url": "https://github.com/jordanburke/joplin-mcp-server/issues"
},
"homepage": "https://github.com/jordanburke/joplin-mcp-server#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"axios": "^1.12.2",
"dotenv": "^17.2.3",
"fastmcp": "^3.19.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/node": "^22.18.10",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd"
}