-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.69 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.69 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
{
"name": "@raja-rakoto/taskmaster-cli",
"version": "1.0.0",
"description": "Interactive CLI for Taskmaster AI: simplifies complex project management by orchestrating AI agents, planning, and execution — all from your terminal 🧩",
"author": "Raja Rakotonirina <raja.rakoto7@gmail.com>",
"license": "MIT",
"type": "module",
"module": "index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"taskmaster-cli": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RajaRakoto/taskmaster-cli.git"
},
"homepage": "https://github.com/RajaRakoto/taskmaster-cli#readme",
"bugs": "https://github.com/RajaRakoto/taskmaster-cli/issues",
"files": ["dist"],
"keywords": [
"cli",
"interactive",
"taskmaster",
"ai",
"project-management",
"agent-orchestration",
"workflow",
"automation",
"terminal",
"inquirer",
"typescript"
],
"engines": {
"node": ">=22.8.0"
},
"scripts": {
"start": "bun dist/index.js",
"start:smol": "bun --smol dist/index.js",
"start:bin": "./dist/taskmaster-cli",
"clean": "rimraf build dist coverage",
"dev": "bun run src/index.ts",
"dev:watch": "bun --watch run src/index.ts",
"dev:hot": "bun --hot run src/index.ts",
"dev:smol:watch": "bun --smol --watch run src/index.ts",
"dev:smol:hot": "bun --smol --hot run src/index.ts",
"build": "bun run clean && bun run build.js && grunt copy",
"build:watch": "bun build src/index.ts --outdir dist --watch",
"build:bin": "bun build --compile --minify --sourcemap src/index.ts --outfile dist/taskmaster-cli",
"test": "bun test",
"test:watch": "bun test --watch",
"biome:start": "biome start",
"biome:stop": "biome stop",
"biome:fix": "biome check --fix .",
"biome:unsafe": "biome check --fix --unsafe .",
"backup": "grunt backup",
"pkg-check": "depcheck",
"pkg-upgrade": "ncu --interactive --format group --packageManager bun",
"versioning": "ungit",
"npm-version:major": "npm version major",
"npm-version:minor": "npm version minor",
"npm-version:patch": "npm version patch",
"npm-login": "npm login",
"npm-publish": "npm publish --access public",
"npm-unpublish": "npm unpublish --force @raja-rakoto/taskmaster-cli",
"npm-reset:registry": "npm config delete registry",
"npm-check:registry": "npm config get registry",
"npm-proxy:start": "bun run npm-proxy:set-registry && verdaccio",
"npm-proxy:set-registry": "npm set registry http://localhost:4873/",
"npm-proxy:publish": "npm publish --registry http://localhost:4873/",
"npm-proxy:unpublish": "npm unpublish --force --registry http://localhost:4873/ @raja-rakoto/taskmaster-cli",
"npm-proxy:republish": "bun run npm-proxy:unpublish && bun run npm-proxy:publish",
"nvm": "nvm use",
"qtype:tasks": "quicktype .taskmaster/tasks/tasks.json -o src/@types/tasks.d.ts --just-types"
},
"dependencies": {
"chalk": "^5.5.0",
"commander": "^14.0.0",
"compressing": "^1.10.3",
"execa": "^9.6.0",
"figlet": "^1.8.2",
"figures": "^6.1.0",
"inquirer": "^9.2.15",
"node-emoji": "^2.2.0",
"ora": "^8.2.0",
"strip-ansi": "^7.1.0",
"user": "^0.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/commander": "^2.12.5",
"@types/execa": "^2.0.2",
"@types/figlet": "^1.7.0",
"@types/inquirer": "^9.0.8",
"@types/jest": "^30.0.0",
"@types/node-emoji": "^2.1.0",
"@types/ora": "^3.2.0",
"bun-plugin-dts": "^0.3.0",
"depcheck": "^1.4.7",
"grunt": "^1.6.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-shell": "^4.0.0",
"jest": "^30.0.5",
"load-grunt-tasks": "^5.1.0",
"npm-check-updates": "^18.0.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"ungit": "^1.5.28"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}