-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.15 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
{
"name": "threadnote",
"version": "1.6.2",
"type": "commonjs",
"main": "dist/threadnote.cjs",
"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 && esbuild src/threadnote.ts --bundle --platform=node --format=cjs --target=node20 --outfile=dist/threadnote.cjs && esbuild src/mcp_server.ts --bundle --platform=node --format=cjs --target=node20 --outfile=dist/mcp_server.cjs && esbuild src/manager_ui.tsx --bundle --platform=browser --format=iife --target=es2020 --outfile=manager/app.js",
"clean": "rm -rf dist",
"dev": "tsx src/threadnote.ts",
"dev:mcp-server": "tsx src/mcp_server.ts",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"test/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" \"test/**/*.ts\" --fix",
"prepare": "husky",
"precommit": "npm run lint && npm run prettier:write && npm run test",
"prepack": "npm run build",
"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: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",
"mcp-server": "npm run build --silent && node ./bin/threadnote-mcp-server.cjs",
"pack:dry-run": "npm pack --dry-run",
"typecheck": "node ./node_modules/typescript-7/bin/tsc --noEmit && node ./node_modules/typescript-7/bin/tsc -p test/tsconfig.json --noEmit"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@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",
"commander": "^15.0.0",
"esbuild": "^0.28.1",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"js-yaml": "^4.2.0",
"prettier": "^3.8.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-7": "npm:typescript@7.0.1-rc",
"typescript-eslint": "^8.59.2",
"vitest": "^4.1.7",
"zod": "^4.4.3"
},
"dependencies": {
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
}
}