-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.81 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
{
"name": "tx-monorepo",
"version": "0.18.0",
"description": "A lean task management system for AI agents and humans",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"bin": {
"tx": "apps/cli/dist/cli.js"
},
"files": [
"migrations"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jamesaphoenix/tx.git"
},
"keywords": [
"task-management",
"ai-agents",
"cli",
"effect-ts",
"mcp"
],
"author": "James Phoenix",
"license": "MIT",
"scripts": {
"sync-readme": "./scripts/sync-readme.sh",
"generate:skills": "bun apps/cli/src/cli.ts skills generate --output-dir apps/cli/generated-skills --clean",
"build": "turbo build",
"build:packages": "turbo build",
"build:binary": "bun run --cwd apps/cli build:binary",
"build:binary:all": "bun run --cwd apps/cli build:all",
"dev": "bun apps/cli/src/cli.ts",
"test": ".claude/skills/test-quiet/scripts/run.sh",
"test:verbose": "turbo test && bunx --bun vitest run",
"test:packages": "turbo test",
"test:root": ".claude/skills/test-quiet/scripts/run.sh",
"test:flaky": ".claude/skills/test-quiet/scripts/run.sh --flaky",
"test:watch": "bunx --bun vitest --watch",
"lint": "turbo lint",
"lint:packages": "turbo lint",
"lint:root": "eslint --no-ignore eslint.config.js eslint-plugin-tx/**/*.js",
"lint:root:fix": "eslint --no-ignore eslint.config.js eslint-plugin-tx/**/*.js --fix",
"lint:fix": "eslint apps/ packages/ --fix && bun run lint:root:fix",
"lint:coverage": "node scripts/lint-coverage.js",
"typecheck": "turbo typecheck && tsc --project tsconfig.json --noEmit",
"typecheck:packages": "turbo typecheck",
"check": "./scripts/check.sh --all",
"check:quick": "./scripts/check.sh --quick",
"check:ci": "./scripts/check-ci.sh",
"validate": "bun run build && .claude/skills/test-quiet/scripts/run.sh && bun link",
"strip-bun-exports": "node scripts/strip-bun-exports.js",
"restore-bun-exports": "node scripts/strip-bun-exports.js --restore",
"prepare": "husky"
},
"dependencies": {
"@effect/cli": "^0.75.0",
"@effect/platform": "^0.96.0",
"@effect/platform-node": "^0.107.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"effect": "^3.19.16",
"esbuild": "^0.28.0",
"zod": "^4.3.6"
},
"optionalDependencies": {
"node-llama-cpp": "^3.15.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/bun": "^1.3.9",
"@types/node": "^26.1.2",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^10.0.1",
"husky": "^9.1.7",
"tsx": "^4.21.0",
"turbo": "^2.8.5",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.2.20"
}