chore: remove npm publish configuration
- Removed publishConfig section - Removed prepublishOnly and release scripts - Removed files array - Streamlined scripts to essentials: build, test, worker management - Installation is via local marketplace, not npm
This commit is contained in:
+2
-21
@@ -25,29 +25,19 @@
|
|||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/thedotmack/claude-mem/issues"
|
"url": "https://github.com/thedotmack/claude-mem/issues"
|
||||||
},
|
},
|
||||||
"publishConfig": {
|
|
||||||
"access": "public",
|
|
||||||
"registry": "https://registry.npmjs.org/"
|
|
||||||
},
|
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18.0.0"
|
"node": ">=18.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "node scripts/build-hooks.js",
|
"build": "node scripts/build-hooks.js",
|
||||||
"build:hooks": "node scripts/build-hooks.js",
|
|
||||||
"release": "node scripts/publish.js",
|
|
||||||
"prepublishOnly": "npm run build",
|
|
||||||
"test": "node --test tests/",
|
"test": "node --test tests/",
|
||||||
"test:context": "echo '{\"session_id\":\"test-'$(date +%s)'\",\"cwd\":\"'$(pwd)'\",\"source\":\"startup\"}' | node plugin/scripts/context-hook.js 2>/dev/null",
|
"test:context": "echo '{\"session_id\":\"test-'$(date +%s)'\",\"cwd\":\"'$(pwd)'\",\"source\":\"startup\"}' | node plugin/scripts/context-hook.js 2>/dev/null",
|
||||||
"test:context:verbose": "echo '{\"session_id\":\"test-'$(date +%s)'\",\"cwd\":\"'$(pwd)'\",\"source\":\"startup\"}' | node plugin/scripts/context-hook.js",
|
"test:context:verbose": "echo '{\"session_id\":\"test-'$(date +%s)'\",\"cwd\":\"'$(pwd)'\",\"source\":\"startup\"}' | node plugin/scripts/context-hook.js",
|
||||||
"import:xml": "tsx src/bin/import-xml-observations.ts",
|
|
||||||
"cleanup:duplicates": "tsx src/bin/cleanup-duplicates.ts",
|
|
||||||
"worker:start": "pm2 start ecosystem.config.cjs",
|
"worker:start": "pm2 start ecosystem.config.cjs",
|
||||||
"worker:stop": "pm2 stop claude-mem-worker",
|
"worker:stop": "pm2 stop claude-mem-worker",
|
||||||
"worker:restart": "pm2 restart claude-mem-worker",
|
"worker:restart": "pm2 restart claude-mem-worker",
|
||||||
"worker:logs": "pm2 logs claude-mem-worker",
|
"worker:logs": "pm2 logs claude-mem-worker"
|
||||||
"worker:status": "pm2 status claude-mem-worker"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@anthropic-ai/claude-agent-sdk": "^0.1.23",
|
"@anthropic-ai/claude-agent-sdk": "^0.1.23",
|
||||||
@@ -66,14 +56,5 @@
|
|||||||
"esbuild": "^0.20.0",
|
"esbuild": "^0.20.0",
|
||||||
"tsx": "^4.20.6",
|
"tsx": "^4.20.6",
|
||||||
"typescript": "^5.3.0"
|
"typescript": "^5.3.0"
|
||||||
},
|
}
|
||||||
"files": [
|
|
||||||
"plugin",
|
|
||||||
"src",
|
|
||||||
"scripts",
|
|
||||||
"docs",
|
|
||||||
"ecosystem.config.cjs",
|
|
||||||
"LICENSE",
|
|
||||||
"README.md"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user