@sascha384/tic 2.0.0 → 2.0.1

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.
@@ -0,0 +1,13 @@
1
+ {
2
+ "version": "7",
3
+ "dialect": "sqlite",
4
+ "entries": [
5
+ {
6
+ "idx": 0,
7
+ "version": "6",
8
+ "when": 1770789518767,
9
+ "tag": "0000_next_vance_astro",
10
+ "breakpoints": true
11
+ }
12
+ ]
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sascha384/tic",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Terminal UI for issue tracking",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,6 +8,7 @@
8
8
  },
9
9
  "files": [
10
10
  "dist",
11
+ "drizzle",
11
12
  "README.md",
12
13
  ".claude-plugin",
13
14
  ".mcp.json",
@@ -16,7 +16,7 @@ Creates a `.tic/` directory in the current project. Call this first if other too
16
16
  ### get_config
17
17
 
18
18
  Returns project configuration:
19
- - `backend` — current backend type (local, github, gitlab, azure, jira)
19
+ - `backend` — current backend type (none, github, gitlab, azure, jira)
20
20
  - `statuses` — available status values
21
21
  - `types` — available work item types
22
22
  - `iterations` — configured iterations
@@ -27,7 +27,7 @@ Returns project configuration:
27
27
 
28
28
  ### set_backend
29
29
 
30
- Switch between backends: `local`, `github`, `gitlab`, `azure`, `jira`.
30
+ Switch between backends: `none`, `github`, `gitlab`, `azure`, `jira`.
31
31
 
32
32
  The backend is auto-detected from git remotes, but can be overridden.
33
33