* fix: add paperclip and opencode to changelog valid integrations * fix: add paperclip and opencode package names to changelog generator * release(paperclip): v0.1.1
52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"name": "@vectorize-io/hindsight-paperclip",
|
|
"version": "0.1.1",
|
|
"description": "Persistent memory for Paperclip AI agents using Hindsight",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"keywords": [
|
|
"paperclip",
|
|
"hindsight",
|
|
"memory",
|
|
"agents",
|
|
"ai"
|
|
],
|
|
"author": "Vectorize <support@vectorize.io>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/vectorize-io/hindsight.git",
|
|
"directory": "hindsight-integrations/paperclip"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "rm -rf dist",
|
|
"test": "vitest run tests",
|
|
"test:watch": "vitest tests",
|
|
"prepublishOnly": "npm run clean && npm run build"
|
|
},
|
|
"peerDependencies": {
|
|
"express": ">=4"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"express": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.0",
|
|
"@types/node": "^20.0.0",
|
|
"express": "^5.0.0",
|
|
"typescript": "^5.3.0",
|
|
"vitest": "^4.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|