-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.17 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "threadnote",
"version": "3.0.3",
"type": "module",
"main": "dist/threadnote.js",
"description": "Shared local context and handoffs for development agents",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/Kashkovsky/threadnote#readme",
"bugs": {
"url": "https://github.com/Kashkovsky/threadnote/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kashkovsky/threadnote.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"agent",
"context",
"handoff",
"mcp",
"openviking"
],
"bin": {
"threadnote": "bin/threadnote.cjs",
"threadnote-mcp-server": "bin/threadnote-mcp-server.cjs"
},
"files": [
".threadnoteignore",
"bin/",
"config/",
"dist/",
"docs/",
"LICENSE",
"THIRD_PARTY.md",
"manager/",
"README.md",
"scripts/"
],
"scripts": {
"build": "npm run clean --silent && node scripts/build.mjs",
"check:bundle-size": "node scripts/check-bundle-size.mjs",
"clean": "node scripts/clean.mjs",
"dev": "tsx src/threadnote.ts",
"dev:mcp-server": "tsx src/mcp_server.ts",
"lint": "oxlint src test",
"lint:fix": "oxlint --fix src test",
"prepare": "husky",
"precommit": "npm run lint && npm run prettier:write && npm run test",
"prepack": "npm run build && npm run check:bundle-size",
"prettier:check": "prettier --check \"**/*.{ts,tsx,js,cjs,json,md,yaml,yml,css,html}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx,js,cjs,json,md,yaml,yml,css,html}\"",
"test": "vitest run",
"test:e2e:install-openviking": "node scripts/install-e2e-openviking.mjs",
"test:e2e:local-bins": "npm run build --silent && vitest run --config vitest.e2e.config.ts",
"test:e2e:windows": "npm run build --silent && vitest run --config vitest.windows-e2e.config.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"threadnote": "npm run build --silent && node ./bin/threadnote.cjs",
"doctor": "npm run build --silent && node ./bin/threadnote.cjs doctor",
"eval:recall": "tsx scripts/evaluate-recall.ts",
"mcp-server": "npm run build --silent && node ./bin/threadnote-mcp-server.cjs",
"pack:dry-run": "npm pack --dry-run",
"typecheck": "tsc --noEmit && tsc -p test/tsconfig.json --noEmit"
},
"engines": {
"node": ">=22.19.0"
},
"devDependencies": {
"@effect/ai-openai-compat": "4.0.0-beta.99",
"@effect/platform-node": "4.0.0-beta.99",
"@effect/vitest": "4.0.0-beta.99",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^26.0.1",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.7",
"effect": "4.0.0-beta.99",
"esbuild": "^0.28.1",
"husky": "^9.1.7",
"js-yaml": "^4.2.0",
"oxlint": "^1.74.0",
"prettier": "^3.9.5",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tsx": "^4.21.0",
"typescript": "7.0.2",
"vitest": "^4.1.7"
},
"dependencies": {
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"overrides": {
"@hono/node-server": "^2.0.12"
}
}