-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.4 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.4 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
{
"name": "threadnote",
"version": "0.4.1",
"type": "commonjs",
"main": "dist/threadnote.cjs",
"description": "Shared local context and handoffs for development agents",
"license": "GPL-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",
"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",
"clean": "rm -rf dist",
"dev": "tsx src/threadnote.ts",
"dev:mcp-server": "tsx src/mcp_server.ts",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"prepare": "husky",
"precommit": "npm run lint && npm run prettier:check",
"prepack": "npm run build",
"prettier:check": "prettier --check \"**/*.{ts,js,cjs,json,md,yaml,yml}\"",
"prettier:write": "prettier --write \"**/*.{ts,js,cjs,json,md,yaml,yml}\"",
"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": "tsc --noEmit"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.6.0",
"commander": "^14.0.3",
"esbuild": "^0.27.7",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"js-yaml": "^4.1.1",
"prettier": "^3.8.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"zod": "^4.4.3"
}
}