-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 5.8 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 5.8 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@hasna/todos",
"version": "0.15.28",
"description": "Universal task management for AI coding agents - CLI + MCP server + interactive TUI",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"todos": "dist/cli/index.js",
"todos-mcp": "dist/mcp/index.js",
"todos-serve": "dist/server/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./sdk": {
"types": "./dist/sdk/index.d.ts",
"import": "./dist/sdk/index.js"
},
"./mcp": {
"types": "./dist/mcp.d.ts",
"import": "./dist/mcp.js"
},
"./registry": {
"types": "./dist/registry.d.ts",
"import": "./dist/registry.js"
},
"./contracts": {
"types": "./dist/contracts.d.ts",
"import": "./dist/contracts.js"
},
"./storage": {
"types": "./dist/storage.d.ts",
"import": "./dist/storage.js"
},
"./testing": {
"types": "./dist/testing.d.ts",
"import": "./dist/testing.js"
},
"./project-registration": {
"types": "./dist/project-registration.d.ts",
"import": "./dist/project-registration.js"
},
"./task-manifest": {
"types": "./dist/task-manifest.d.ts",
"import": "./dist/task-manifest.js"
}
},
"workspaces": [
"dashboard",
"ai"
],
"files": [
"dist",
"dashboard/dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rm -rf dist dashboard/dist && cd dashboard && bun install --frozen-lockfile && bun run build && cd .. && bun build src/cli/index.tsx --outdir dist/cli --target bun --external ink --external react --external chalk --external @modelcontextprotocol/sdk --external '@hasna/contracts' --external '@hasna/contracts/*' && bun build src/mcp/index.ts --outdir dist/mcp --target bun --external @modelcontextprotocol/sdk --external '@hasna/contracts' --external '@hasna/contracts/*' && bun build src/server/index.ts --outdir dist/server --target bun && bun build src/sdk/index.ts --outdir dist/sdk --target bun --external '@hasna/contracts' --external '@hasna/contracts/*' && bun build src/index.ts src/mcp.ts src/registry.ts src/contracts.ts src/storage.ts src/testing.ts src/project-registration.ts src/task-manifest.ts --outdir dist --target bun --external '@hasna/contracts' --external '@hasna/contracts/*' && tsc --emitDeclarationOnly --outDir dist",
"build:server": "rm -rf dist && bun build src/cli/index.tsx --outdir dist/cli --target bun --external ink --external react --external chalk --external @modelcontextprotocol/sdk --external '@hasna/contracts' --external '@hasna/contracts/*' && bun build src/mcp/index.ts --outdir dist/mcp --target bun --external @modelcontextprotocol/sdk --external '@hasna/contracts' --external '@hasna/contracts/*' && bun build src/server/index.ts --outdir dist/server --target bun && bun build src/sdk/index.ts --outdir dist/sdk --target bun --external '@hasna/contracts' --external '@hasna/contracts/*' && bun build src/index.ts src/mcp.ts src/registry.ts src/contracts.ts src/storage.ts src/testing.ts src/project-registration.ts src/task-manifest.ts --outdir dist --target bun --external '@hasna/contracts' --external '@hasna/contracts/*'",
"migrate": "bun run src/server/index.ts migrate",
"backfill:comment-redaction": "bun run src/server/index.ts redact-comments",
"generate:sdk": "bun run scripts/generate-sdk.ts",
"build:dashboard": "cd dashboard && bun install --frozen-lockfile && bun run build",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"test": "bun test",
"test:no-cloud": "bun test src/no-cloud-boundary.test.ts src/local-first.test.ts src/lib/public-release-gate.test.ts",
"dev:cli": "bun run src/cli/index.tsx",
"dev:mcp": "bun run src/mcp/index.ts",
"dev:serve": "bun run src/server/index.ts",
"verify:release": "bun run scripts/verify-public-release.ts --mode=review",
"verify:release-review": "bun run scripts/verify-npm-release-agent-review.ts",
"verify:attested-container-candidate": "bun run scripts/attested-container-candidate.ts verify",
"test:attested-container-candidate": "bun test scripts/attested-container-candidate.test.ts scripts/attested-container-compatibility-vector.test.ts",
"emit:iapp-deployment-compatibility-vector": "bun run scripts/attested-container-compatibility-vector.ts emit",
"verify:iapp-deployment-compatibility-vector": "bun run scripts/attested-container-compatibility-vector.ts verify",
"issue:release-review": "bun run scripts/issue-npm-release-agent-review.ts",
"prepublishOnly": "bun run scripts/verify-public-release.ts --mode=publish",
"postinstall": "mkdir -p $HOME/.hasna/todos $HOME/.hasna/todos/training 2>/dev/null || true"
},
"keywords": [
"todos",
"tasks",
"mcp",
"ai",
"coding-agent",
"claude",
"codex",
"gemini",
"tui",
"cli",
"dashboard"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/hasna/todos.git"
},
"homepage": "https://github.com/hasna/todos",
"bugs": {
"url": "https://github.com/hasna/todos/issues"
},
"engines": {
"bun": ">=1.0.0"
},
"packageManager": "bun@1.3.14",
"author": "Andrei Hasna <andrei@hasna.com>",
"license": "Apache-2.0",
"dependencies": {
"@hasna/contracts": "0.5.2",
"@hasna/events": "^0.1.11",
"@modelcontextprotocol/sdk": "^1.12.1",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"ink": "^5.2.0",
"react": "^18.3.1",
"zod": "^3.24.2"
},
"overrides": {
"ajv": "8.20.0",
"fast-uri": "3.1.2"
},
"devDependencies": {
"@types/bun": "^1.2.4",
"@types/react": "^18.3.18",
"bun-types": "1.3.9",
"hasna-deployment-contracts": "npm:@hasna/contracts@0.10.4",
"typescript": "^5.7.3"
}
}