-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.64 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "mindos-dev",
"version": "1.1.60",
"private": true,
"description": "MindOS — Human-Agent Collaborative Mind System. Local-first knowledge base that syncs your mind to all AI Agents via MCP.",
"keywords": [
"mindos",
"mcp",
"knowledge-base",
"knowledge-management",
"ai-agent",
"local-first",
"markdown",
"second-brain"
],
"type": "module",
"license": "MIT",
"author": "GeminiLight",
"repository": {
"type": "git",
"url": "https://github.com/GeminiLight/MindOS"
},
"homepage": "https://mindos.you",
"bugs": {
"url": "https://github.com/GeminiLight/MindOS/issues"
},
"scripts": {
"setup": "node scripts/setup.js",
"dev": "node packages/mindos/bin/cli.js dev",
"build": "node packages/mindos/bin/cli.js build",
"start": "node packages/mindos/bin/cli.js start",
"mcp": "node packages/mindos/bin/cli.js mcp",
"test": "pnpm run test:contracts && pnpm run test:unit && turbo run test",
"test:quick": "pnpm run test:contracts && pnpm run test:unit",
"test:release": "pnpm run test:contracts && pnpm run test:unit && turbo run build && turbo run test && turbo run type-check",
"test:contracts": "vitest run tests/*.test.ts",
"test:unit": "vitest run tests/unit/*.test.ts",
"test:integration": "vitest run --config tests/integration/vitest.config.ts",
"test:e2e": "playwright test -c tests/e2e/playwright.config.ts",
"benchmark:agent": "node benchmark/Agent/run-agent-benchmark.mjs",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"verify:standalone": "node scripts/verify-standalone.mjs",
"obsidian:matrix": "pnpm --dir packages/web exec node --conditions=import --import tsx scripts/generate-obsidian-real-plugin-matrix.ts",
"obsidian:workflow-probe": "pnpm run obsidian:matrix -- --run-workflow-probes",
"clean:product-stage": "node scripts/clean-product-stage.mjs --include-package-docs",
"release": "bash scripts/release.sh",
"clean": "turbo run clean && node scripts/remove-node-modules.mjs",
"prepare": "git config core.hooksPath scripts/hooks 2>/dev/null || true"
},
"packageManager": "pnpm@10.18.3",
"engines": {
"node": ">=18"
},
"dependencies": {
"chokidar": "^5.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "^19.0.0"
}
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "1.60.0",
"@types/node": "^22.10.5",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^16.4.0",
"tsx": "^4.21.0",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.59.0",
"vitest": "^2.1.8"
}
}