@harborclient/team-hub 0.4.5 → 0.4.6

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,7 +1,21 @@
1
1
  {
2
2
  "name": "@harborclient/team-hub",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "description": "Team Hub - central server for HarborClient",
5
+ "homepage": "https://harborclient.com/team-hub/",
6
+ "bugs": {
7
+ "url": "https://github.com/harborclient/harborclient/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/harborclient/harborclient.git",
12
+ "directory": "packages/team-hub"
13
+ },
14
+ "license": "MIT",
15
+ "author": {
16
+ "name": "HarborClient",
17
+ "email": "contact@harborclient.com"
18
+ },
5
19
  "type": "module",
6
20
  "bin": {
7
21
  "team-hub": "./dist/cli.js"
@@ -9,21 +23,14 @@
9
23
  "imports": {
10
24
  "#/*": "./src/*"
11
25
  },
12
- "author": {
13
- "name": "Harbor",
14
- "email": "harbor@example.com"
15
- },
16
- "license": "MIT",
17
26
  "files": [
18
- "dist"
27
+ "dist",
28
+ "README.md",
29
+ "CHANGELOG.md"
19
30
  ],
20
31
  "engines": {
21
32
  "node": ">=24"
22
33
  },
23
- "repository": {
24
- "type": "git",
25
- "url": "git+https://github.com/harborclient/team-hub.git"
26
- },
27
34
  "publishConfig": {
28
35
  "access": "public",
29
36
  "provenance": true
@@ -45,6 +52,7 @@
45
52
  },
46
53
  "devDependencies": {
47
54
  "@eslint/js": "^9.39.4",
55
+ "@types/node": "^22.10.0",
48
56
  "@types/pg": "^8.20.0",
49
57
  "concurrently": "^8.2.2",
50
58
  "eslint": "^9.39.4",
@@ -64,6 +72,7 @@
64
72
  "build": "node scripts/build-join-logo.mjs && tsup",
65
73
  "start": "node dist/cli.js start",
66
74
  "test": "vitest run",
75
+ "test:changed": "vitest run --changed",
67
76
  "test:watch": "vitest",
68
77
  "lint": "eslint --cache .",
69
78
  "typecheck": "tsc --noEmit",
@@ -73,9 +82,9 @@
73
82
  "docs:build:nav": "node scripts/build-docs-nav.mjs && node scripts/assert-docs-slugs.mjs",
74
83
  "docs:preview": "pnpm docs:build && vitepress preview docs",
75
84
  "docs:serve": "pnpm docs:build:nav && concurrently --kill-others --prefixColors=auto -n nav,vp \"node scripts/watch-docs-nav.mjs\" \"vitepress dev docs\"",
76
- "release": "gh workflow run Release --ref main -f release_type=patch",
77
- "release:patch": "gh workflow run Release --ref main -f release_type=patch",
78
- "release:minor": "gh workflow run Release --ref main -f release_type=minor",
79
- "release:major": "gh workflow run Release --ref main -f release_type=major"
85
+ "release": "gh workflow run team-hub-release.yml --ref main -f branch=main -f bump=patch",
86
+ "release:patch": "gh workflow run team-hub-release.yml --ref main -f branch=main -f bump=patch",
87
+ "release:minor": "gh workflow run team-hub-release.yml --ref main -f branch=main -f bump=minor",
88
+ "release:major": "gh workflow run team-hub-release.yml --ref main -f branch=main -f bump=major"
80
89
  }
81
90
  }