-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "t3poll",
"version": "0.1.1",
"description": "Watch GitHub PRs and wake an existing T3 Code thread, through MCP or the CLI.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eimexdev/t3poll.git"
},
"bin": {
"t3poll": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"docs",
"LICENSE"
],
"engines": {
"node": ">=24.10.0"
},
"scripts": {
"build": "tsc",
"check": "tsc --noEmit",
"test": "npm run build && node --import tsx --test tests/*.test.ts",
"format": "prettier --write src tests scripts README.md docs package.json tsconfig.json",
"prepack": "npm run build",
"verify:package": "node scripts/verify-package.mjs"
},
"dependencies": {
"@clack/prompts": "1.8.0",
"@modelcontextprotocol/sdk": "1.30.0",
"koffi": "3.2.1",
"smol-toml": "1.8.0",
"toml-eslint-parser": "1.0.3",
"zod": "4.6.2"
},
"devDependencies": {
"@types/node": "24.13.4",
"prettier": "3.9.6",
"tsx": "4.23.13",
"typescript": "7.0.2"
},
"publishConfig": {
"access": "public",
"tag": "nightly"
}
}