-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.12 KB
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
34
35
36
{
"name": "mnemoscope",
"version": "0.2.0",
"private": true,
"description": "Observability and predictive memory tooling for LLM agents on Markdown vaults.",
"license": "Apache-2.0",
"author": "Mnemoscope contributors",
"homepage": "https://github.com/toonight/Mnemoscope",
"repository": {
"type": "git",
"url": "https://github.com/toonight/Mnemoscope.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc -b packages/core packages/mcp-server packages/cli && npm run build -w @mnemoscope/obsidian-plugin",
"test": "npm run test --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"lint": "eslint packages/obsidian-plugin/src",
"lint:fix": "eslint packages/obsidian-plugin/src --fix",
"clean": "rm -rf packages/*/dist packages/*/*.tsbuildinfo"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@eslint/json": "^0.14.0",
"@types/node": "^22.10.0",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.2.7",
"typescript": "^5.6.3",
"typescript-eslint": "^8.59.1"
}
}