@taskcast/cli 0.1.0 → 0.1.2

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 WEIGHTWAVE INC.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,55 @@
1
+ # @taskcast/cli
2
+
3
+ Standalone [Taskcast](https://github.com/weightwave/taskcast) server. Run a fully configured task tracking service with a single command.
4
+
5
+ ## Quick Start
6
+
7
+ ```bash
8
+ npx taskcast
9
+ ```
10
+
11
+ The server starts on port `3721` by default.
12
+
13
+ ## Options
14
+
15
+ ```
16
+ Usage: taskcast [options] [command]
17
+
18
+ Commands:
19
+ start Start the Taskcast server (default)
20
+
21
+ Options:
22
+ -c, --config Path to config file
23
+ -p, --port Server port (default: 3721)
24
+ ```
25
+
26
+ ## Configuration
27
+
28
+ ### Config File
29
+
30
+ ```bash
31
+ npx taskcast -p 8080 -c taskcast.config.yaml
32
+ ```
33
+
34
+ Taskcast searches for config files in the current directory:
35
+
36
+ `taskcast.config.ts` > `.js` > `.mjs` > `.yaml` / `.yml` > `.json`
37
+
38
+ ### Environment Variables
39
+
40
+ | Variable | Description | Default |
41
+ |----------|-------------|---------|
42
+ | `TASKCAST_PORT` | Server port | `3721` |
43
+ | `TASKCAST_AUTH_MODE` | `none` \| `jwt` \| `custom` | `none` |
44
+ | `TASKCAST_JWT_SECRET` | JWT HMAC secret | -- |
45
+ | `TASKCAST_REDIS_URL` | Redis connection URL | -- |
46
+ | `TASKCAST_POSTGRES_URL` | PostgreSQL connection URL | -- |
47
+ | `TASKCAST_LOG_LEVEL` | `debug` \| `info` \| `warn` \| `error` | `info` |
48
+
49
+ ## Part of Taskcast
50
+
51
+ This is the CLI package. See the [Taskcast monorepo](https://github.com/weightwave/taskcast) for the full project.
52
+
53
+ ## License
54
+
55
+ [MIT](https://github.com/weightwave/taskcast/blob/main/LICENSE)
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,9 +1,21 @@
1
1
  {
2
2
  "name": "@taskcast/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
+ "description": "Standalone Taskcast server CLI — run with npx taskcast.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/weightwave/taskcast.git",
8
+ "directory": "packages/cli"
9
+ },
10
+ "homepage": "https://github.com/weightwave/taskcast/tree/main/packages/cli#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/weightwave/taskcast/issues"
13
+ },
14
+ "license": "MIT",
4
15
  "files": [
5
16
  "dist",
6
- "LICENSE"
17
+ "LICENSE",
18
+ "README.md"
7
19
  ],
8
20
  "type": "module",
9
21
  "bin": {
@@ -15,21 +27,24 @@
15
27
  "import": "./dist/index.js"
16
28
  }
17
29
  },
18
- "scripts": {
19
- "build": "tsc",
20
- "start": "node dist/index.js"
30
+ "publishConfig": {
31
+ "provenance": true
21
32
  },
22
33
  "dependencies": {
23
34
  "@hono/node-server": "^1.19.9",
24
- "@taskcast/core": "workspace:*",
25
- "@taskcast/postgres": "workspace:*",
26
- "@taskcast/redis": "workspace:*",
27
- "@taskcast/server": "workspace:*",
28
35
  "commander": "^12.1.0",
29
36
  "ioredis": "^5.4.0",
30
- "postgres": "^3.4.5"
37
+ "postgres": "^3.4.5",
38
+ "@taskcast/server": "0.1.2",
39
+ "@taskcast/postgres": "0.1.2",
40
+ "@taskcast/redis": "0.1.2",
41
+ "@taskcast/core": "0.1.2"
31
42
  },
32
43
  "devDependencies": {
33
44
  "typescript": "^5.7.0"
45
+ },
46
+ "scripts": {
47
+ "build": "tsc",
48
+ "start": "node dist/index.js"
34
49
  }
35
- }
50
+ }