relizy 0.3.0 → 1.0.0-beta.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,7 +1,7 @@
1
1
  {
2
2
  "name": "relizy",
3
3
  "type": "module",
4
- "version": "0.3.0",
4
+ "version": "1.0.0-beta.0",
5
5
  "description": "Changelogen adapter for monorepo management with unified and independent versioning",
6
6
  "author": "Louis Mazel <me@loicmazuel.com>",
7
7
  "license": "MIT",
@@ -54,6 +54,18 @@
54
54
  "engines": {
55
55
  "node": ">=20.0.0"
56
56
  },
57
+ "peerDependencies": {
58
+ "@slack/web-api": "^7.0.0",
59
+ "twitter-api-v2": "^1.20.0"
60
+ },
61
+ "peerDependenciesMeta": {
62
+ "@slack/web-api": {
63
+ "optional": true
64
+ },
65
+ "twitter-api-v2": {
66
+ "optional": true
67
+ }
68
+ },
57
69
  "dependencies": {
58
70
  "@inquirer/prompts": "^8.1.0",
59
71
  "@maz-ui/node": "4.3.4-beta.0",
@@ -73,6 +85,7 @@
73
85
  "@commitlint/cz-commitlint": "^20.2.0",
74
86
  "@commitlint/types": "^20.2.0",
75
87
  "@maz-ui/eslint-config": "4.3.2",
88
+ "@slack/web-api": "^7.12.0",
76
89
  "@types/node": "^25.0.3",
77
90
  "@types/semver": "^7.7.1",
78
91
  "@vitest/coverage-v8": "^4.0.16",
@@ -82,6 +95,7 @@
82
95
  "jiti": "^2.6.1",
83
96
  "lint-staged": "^16.2.7",
84
97
  "memfs": "^4.51.1",
98
+ "twitter-api-v2": "^1.28.0",
85
99
  "typescript": "^5.9.3",
86
100
  "unbuild": "^3.6.1",
87
101
  "vitest": "^4.0.16"
@@ -100,7 +114,11 @@
100
114
  "rly": "node bin/relizy.mjs",
101
115
  "typecheck": "tsc --noEmit --skipLibCheck",
102
116
  "lint": "cross-env NODE_ENV=production eslint .",
103
- "lint:fix": "pnpm lint --fix",
117
+ "lint:fix": "cross-env NODE_ENV=production eslint . --fix",
118
+ "lint:all": "pnpm lint && pnpm lint:docs",
119
+ "lint:fix:all": "pnpm lint:fix && pnpm lint:docs:fix",
120
+ "lint:docs": "cross-env NODE_ENV=production pnpm -F docs lint",
121
+ "lint:docs:fix": "pnpm lint:docs --fix",
104
122
  "test:unit": "vitest run",
105
123
  "test:unit:watch": "vitest watch",
106
124
  "test:unit:coverage": "vitest run --coverage",