-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1010 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "atomicmemory-integrations",
"version": "0.5.0",
"private": true,
"description": "Plugins, adapters, and the shared MCP server that expose AtomicMemory to coding agents and AI frameworks.",
"repository": {
"type": "git",
"url": "git+https://github.com/atomicmemory/Atomicmemory-integrations.git"
},
"license": "Apache-2.0",
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck",
"lint": "pnpm -r lint",
"fallow": "fallow",
"fallow:audit": "fallow audit",
"fallow:ci": "fallow --ci",
"fallow:dead-code": "fallow dead-code",
"fallow:dupes": "fallow dupes",
"fallow:health": "fallow health",
"bump:plugin-versions": "node scripts/bump-plugin-versions.mjs",
"check:plugin-versions": "node scripts/bump-plugin-versions.mjs --check"
},
"devDependencies": {
"fallow": "^2.51.0",
"typescript": "^5.6.0"
}
}