@releasekit/version 0.2.0-next.9 → 0.3.0-next.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@releasekit/version",
3
- "version": "0.2.0-next.9",
3
+ "version": "0.3.0-next.0",
4
4
  "description": "Semantic versioning based on Git history and conventional commits",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -21,17 +21,12 @@
21
21
  "bin": {
22
22
  "releasekit-version": "dist/cli.js"
23
23
  },
24
- "scripts": {
25
- "build": "tsup src/index.ts src/cli.ts --format esm,cjs --dts",
26
- "dev": "tsup src/index.ts src/cli.ts --format esm,cjs --watch --dts",
27
- "clean": "rm -rf dist coverage .turbo",
28
- "test": "vitest run --dir test/unit",
29
- "test:unit": "vitest run --coverage --dir test/unit",
30
- "test:coverage": "vitest run --coverage --dir test/unit",
31
- "lint": "biome check .",
32
- "typecheck": "tsc --noEmit"
33
- },
34
- "keywords": ["version", "semver", "git", "package"],
24
+ "keywords": [
25
+ "version",
26
+ "semver",
27
+ "git",
28
+ "package"
29
+ ],
35
30
  "author": {
36
31
  "name": "Sam Maister",
37
32
  "email": "goosewobbler@protonmail.com"
@@ -42,39 +37,53 @@
42
37
  "directory": "packages/version"
43
38
  },
44
39
  "license": "MIT",
45
- "files": ["dist", "docs", "version.schema.json"],
40
+ "files": [
41
+ "dist",
42
+ "docs",
43
+ "version.schema.json"
44
+ ],
46
45
  "publishConfig": {
47
46
  "access": "public"
48
47
  },
49
48
  "dependencies": {
50
49
  "@manypkg/get-packages": "^3.1.0",
51
- "@releasekit/config": "workspace:*",
52
- "@releasekit/core": "workspace:*",
53
50
  "@types/micromatch": "^4.0.10",
54
- "chalk": "catalog:",
55
- "commander": "catalog:",
56
- "conventional-changelog-angular": "^8.1.0",
51
+ "chalk": "^5.6.2",
52
+ "commander": "^14.0.3",
53
+ "conventional-changelog-angular": "^8.3.0",
57
54
  "conventional-changelog-conventional-commits": "npm:conventional-changelog-conventionalcommits@^9.0.0",
58
- "conventional-changelog-conventionalcommits": "^9.1.0",
55
+ "conventional-changelog-conventionalcommits": "^9.3.0",
59
56
  "conventional-commits-filter": "^5.0.0",
60
57
  "conventional-recommended-bump": "^11.2.0",
61
- "figlet": "^1.10.0",
62
- "git-semver-tags": "^8.0.0",
58
+ "figlet": "^1.11.0",
59
+ "git-semver-tags": "^8.0.1",
63
60
  "micromatch": "^4.0.8",
64
- "semver": "catalog:",
65
- "smol-toml": "catalog:"
61
+ "semver": "^7.7.4",
62
+ "smol-toml": "^1.6.0",
63
+ "@releasekit/config": "0.1.0",
64
+ "@releasekit/core": "0.1.0"
66
65
  },
67
66
  "devDependencies": {
68
- "@biomejs/biome": "catalog:",
67
+ "@biomejs/biome": "^2.4.6",
69
68
  "@types/figlet": "^1.5.5",
70
- "@types/node": "catalog:",
71
- "@types/semver": "catalog:",
72
- "@vitest/coverage-v8": "catalog:",
73
- "tsup": "catalog:",
74
- "typescript": "catalog:",
75
- "vitest": "catalog:"
69
+ "@types/node": "^22.19.15",
70
+ "@types/semver": "^7.7.1",
71
+ "@vitest/coverage-v8": "^4.1.0",
72
+ "tsup": "^8.5.1",
73
+ "typescript": "^5.9.3",
74
+ "vitest": "^4.1.0"
76
75
  },
77
76
  "engines": {
78
77
  "node": ">=20"
78
+ },
79
+ "scripts": {
80
+ "build": "tsup src/index.ts src/cli.ts --format esm,cjs --dts",
81
+ "dev": "tsup src/index.ts src/cli.ts --format esm,cjs --watch --dts",
82
+ "clean": "rm -rf dist coverage .turbo",
83
+ "test": "vitest run --dir test/unit",
84
+ "test:unit": "vitest run --coverage --dir test/unit",
85
+ "test:coverage": "vitest run --coverage --dir test/unit",
86
+ "lint": "biome check .",
87
+ "typecheck": "tsc --noEmit"
79
88
  }
80
- }
89
+ }