aitasks 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +155 -0
  3. package/dist/index.js +27918 -0
  4. package/package.json +57 -0
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "aitasks",
3
+ "version": "1.0.0",
4
+ "description": "CLI task management tool built for AI agents",
5
+ "type": "module",
6
+ "bin": {
7
+ "aitasks": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist/index.js"
11
+ ],
12
+ "engines": {
13
+ "bun": ">=1.0.0"
14
+ },
15
+ "scripts": {
16
+ "build": "bun build src/index.ts --outdir dist --target bun --sourcemap=external --external react-devtools-core",
17
+ "dev": "bun run src/index.ts",
18
+ "typecheck": "tsc --noEmit",
19
+ "clean": "rm -rf dist",
20
+ "prepublishOnly": "bun run build",
21
+ "test": "bun test --timeout 15000",
22
+ "test:watch": "bun test --watch --timeout 15000"
23
+ },
24
+ "keywords": [
25
+ "cli",
26
+ "tasks",
27
+ "task-management",
28
+ "ai",
29
+ "agents",
30
+ "ai-agents",
31
+ "claude",
32
+ "llm"
33
+ ],
34
+ "author": "Sarfraz <sarfraznawaz2005@gmail.com>",
35
+ "license": "MIT",
36
+ "homepage": "https://github.com/sarfraznawaz2005/aitasks#readme",
37
+ "bugs": {
38
+ "url": "https://github.com/sarfraznawaz2005/aitasks/issues"
39
+ },
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "git+https://github.com/sarfraznawaz2005/aitasks.git"
43
+ },
44
+ "dependencies": {
45
+ "@clack/prompts": "^0.9.0",
46
+ "chalk": "^5.4.1",
47
+ "commander": "^12.1.0",
48
+ "date-fns": "^4.1.0",
49
+ "ink": "^6.8.0",
50
+ "react": "^19.2.4"
51
+ },
52
+ "devDependencies": {
53
+ "@types/react": "^19.2.14",
54
+ "bun-types": "^1.3.10",
55
+ "typescript": "^5.7.3"
56
+ }
57
+ }