mirror of
https://github.com/dsebastien/obsidian-cli-rest.git
synced 2026-07-22 07:02:18 +00:00
87 lines
2.8 KiB
JSON
87 lines
2.8 KiB
JSON
{
|
|
"name": "cli-rest-mcp",
|
|
"version": "1.1.9",
|
|
"description": "Exposes CLI commands as RESTful API endpoints and an MCP server for AI tool integration.",
|
|
"author": {
|
|
"name": "Sébastien Dubois",
|
|
"email": "sebastien@dsebastien.net",
|
|
"url": "https://dsebastien.net"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin"
|
|
],
|
|
"license": "MIT",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/dsebastien/obsidian-cli-rest.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/dsebastien/obsidian-cli-rest/issues"
|
|
},
|
|
"homepage": "https://github.com/dsebastien/obsidian-cli-rest",
|
|
"engines": {
|
|
"node": ">=20.0.0",
|
|
"npm": ">=10.1.0"
|
|
},
|
|
"main": "main.js",
|
|
"packageManager": "bun@1.3.14",
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "node_modules/cz-customizable"
|
|
},
|
|
"cz-customizable": {
|
|
"config": ".cz-config.cjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "bun scripts/build.ts",
|
|
"build": "bun run tsc && bun scripts/build.ts --prod",
|
|
"setup": "git config --local --replace-all include.path ../.gitconfig",
|
|
"tsc": "tsc --noEmit",
|
|
"tsc:watch": "tsc --noEmit --watch --preserveWatchOutput",
|
|
"tscw": "bun run tsc:watch",
|
|
"lint": "eslint . --max-warnings 0",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"test": "bun test",
|
|
"commit": "cz",
|
|
"cm": "cz",
|
|
"commit:lint": "commitlint --edit",
|
|
"release:update-version": "bun scripts/update-version.ts",
|
|
"release:version-bump": "bun scripts/version-bump.ts",
|
|
"release:changelog": "bun scripts/generate-changelog.ts",
|
|
"release": "./scripts/release.sh",
|
|
"validate": "bun run --parallel tsc test lint"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^20.1.0",
|
|
"@commitlint/config-conventional": "^20.1.0",
|
|
"@eslint/js": "^9.36.0",
|
|
"@tailwindcss/cli": "4.1.17",
|
|
"@types/bun": "latest",
|
|
"commitizen": "^4.3.1",
|
|
"conventional-changelog-cli": "5.0.0",
|
|
"conventional-changelog-conventionalcommits": "9.1.0",
|
|
"cz-customizable": "^7.5.1",
|
|
"eslint": "^9.36.0",
|
|
"eslint-config-prettier": "^10.1.5",
|
|
"eslint-plugin-obsidianmd": "0.1.9",
|
|
"globals": "17.0.0",
|
|
"obsidian": "1.8.7",
|
|
"prettier": "^3.6.2",
|
|
"tailwindcss": "4.1.17",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "8.48.1"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "1.26.0",
|
|
"immer": "11.0.1",
|
|
"zod": "4.1.13"
|
|
},
|
|
"overrides": {
|
|
"tmp": "^0.2.7"
|
|
}
|
|
}
|