-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.26 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
{
"name": "@bvdm/t3code-cli",
"version": "0.1.2",
"description": "Open a folder as a T3 Code project and start a new handover thread.",
"license": "MIT",
"keywords": [
"t3-code",
"cli",
"handover",
"codex"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MajesteitBart/t3code-cli.git"
},
"homepage": "https://github.com/MajesteitBart/t3code-cli#readme",
"bugs": {
"url": "https://github.com/MajesteitBart/t3code-cli/issues"
},
"type": "module",
"bin": {
"t3code": "dist/cli.js"
},
"files": [
"dist",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json",
"test": "vitest run",
"test:watch": "vitest",
"check": "pnpm typecheck && pnpm test && pnpm build",
"prepublishOnly": "pnpm check"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": "^22.16 || ^23.11 || >=24.10"
},
"dependencies": {
"commander": "^14.0.1",
"t3": "0.0.28"
},
"devDependencies": {
"@types/node": "^24.10.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.28.2"
}