@dreki-gg/taskman 0.2.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.
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@dreki-gg/taskman",
3
+ "version": "0.2.0",
4
+ "description": "Standalone task-management engine + CLI over a .plans/ JSONL ledger — the plan-mode core, usable from any Node harness",
5
+ "keywords": [
6
+ "tasks",
7
+ "planning",
8
+ "cli"
9
+ ],
10
+ "author": "Juan Albarran <jalbarrandev@gmail.com>",
11
+ "license": "MIT",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/dreki-gg/pi-extensions.git",
15
+ "directory": "packages/taskman"
16
+ },
17
+ "type": "module",
18
+ "main": "./dist/index.mjs",
19
+ "exports": {
20
+ ".": {
21
+ "import": "./dist/index.mjs",
22
+ "types": "./dist/index.d.mts"
23
+ }
24
+ },
25
+ "bin": {
26
+ "taskman": "./dist/cli.mjs"
27
+ },
28
+ "files": [
29
+ "dist"
30
+ ],
31
+ "scripts": {
32
+ "build": "tsdown",
33
+ "test": "bun test",
34
+ "typecheck": "tsc --noEmit",
35
+ "lint": "oxlint src",
36
+ "format": "oxfmt --write src",
37
+ "format:check": "oxfmt --check src"
38
+ },
39
+ "dependencies": {
40
+ "commander": "^15.0.0",
41
+ "effect": "^3.21.2"
42
+ },
43
+ "devDependencies": {
44
+ "@types/node": "24",
45
+ "bun-types": "latest",
46
+ "oxfmt": "^0.43.0",
47
+ "oxlint": "^1.58.0",
48
+ "tsdown": "^0.22.0",
49
+ "typescript": "^6.0.0"
50
+ }
51
+ }