Some checks failed
Build and Publish / build-and-publish (push) Failing after 51s
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
68 lines
1.6 KiB
JSON
68 lines
1.6 KiB
JSON
{
|
|
"name": "@lilith/mcp-opener",
|
|
"version": "1.0.0",
|
|
"description": "Model Context Protocol server for opening files, folders, and browsers across different OS environments",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"bin": {
|
|
"mcp-opener": "./dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"postbuild": "chmod +x dist/index.js",
|
|
"watch": "tsc --watch",
|
|
"dev": "tsc --watch",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"prepublishOnly": "npm run build",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"opener",
|
|
"xdg-open",
|
|
"file-manager",
|
|
"browser",
|
|
"flatpak",
|
|
"claude-code"
|
|
],
|
|
"author": "3viky",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://forge.black.lan/lilith/mcp-opener.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/3viky/mcp-opener/issues"
|
|
},
|
|
"homepage": "https://github.com/3viky/mcp-opener#readme",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
"dotenv": "^16.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/configs": "workspace:*",
|
|
"@types/node": "^20.19.28",
|
|
"@vitest/coverage-v8": "^2.1.9",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^2.1.9"
|
|
},
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
|
|
}
|
|
}
|