@mandipadk7/kavi 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/package.json CHANGED
@@ -1,17 +1,9 @@
1
1
  {
2
2
  "name": "@mandipadk7/kavi",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Managed Codex + Claude collaboration TUI",
5
5
  "type": "module",
6
6
  "preferGlobal": true,
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://github.com/mandipadk/kavi.git"
10
- },
11
- "homepage": "https://github.com/mandipadk/kavi#readme",
12
- "bugs": {
13
- "url": "https://github.com/mandipadk/kavi/issues"
14
- },
15
7
  "publishConfig": {
16
8
  "access": "public"
17
9
  },
@@ -25,6 +17,7 @@
25
17
  "scripts": {
26
18
  "build": "node ./scripts/build.mjs",
27
19
  "dev": "node ./bin/kavi.js",
20
+ "publish": "node ./scripts/publish.mjs",
28
21
  "doctor": "node ./bin/kavi.js doctor",
29
22
  "init": "node ./bin/kavi.js init",
30
23
  "start": "node ./bin/kavi.js start",
@@ -35,16 +28,18 @@
35
28
  "task": "node ./bin/kavi.js task",
36
29
  "tasks": "node ./bin/kavi.js tasks",
37
30
  "task-output": "node ./bin/kavi.js task-output",
31
+ "decisions": "node ./bin/kavi.js decisions",
32
+ "claims": "node ./bin/kavi.js claims",
38
33
  "approvals": "node ./bin/kavi.js approvals",
39
34
  "approve": "node ./bin/kavi.js approve",
40
35
  "deny": "node ./bin/kavi.js deny",
41
36
  "events": "node ./bin/kavi.js events",
42
37
  "stop": "node ./bin/kavi.js stop",
43
38
  "land": "node ./bin/kavi.js land",
44
- "test": "node --experimental-strip-types --test src/**/*.test.ts",
39
+ "test": "node --experimental-strip-types --test \"src/**/*.test.ts\"",
45
40
  "release:check": "npm run build && npm test && npm pack --dry-run --cache /tmp/kavi-npm-cache",
46
- "publish:beta": "npm publish --access public --tag beta",
47
- "publish:latest": "npm publish --access public",
41
+ "publish:beta": "node ./scripts/publish.mjs --tag beta",
42
+ "publish:latest": "node ./scripts/publish.mjs --tag latest",
48
43
  "prepublishOnly": "npm run release:check"
49
44
  },
50
45
  "engines": {