@exadev/semantic-release-workspace 0.0.0 → 1.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.
package/package.json CHANGED
@@ -1,5 +1,123 @@
1
1
  {
2
2
  "name": "@exadev/semantic-release-workspace",
3
- "version": "0.0.0",
4
- "private": false
3
+ "version": "1.0.1",
4
+ "description": "Independent per-package semantic-release orchestration for pnpm workspaces, without lockstep versioning.",
5
+ "type": "module",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/ExaDev/semantic-release-workspace.git"
9
+ },
10
+ "homepage": "https://github.com/ExaDev/semantic-release-workspace#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/ExaDev/semantic-release-workspace/issues"
13
+ },
14
+ "bin": {
15
+ "semantic-release-workspace": "./dist/cli.js"
16
+ },
17
+ "exports": {
18
+ ".": {
19
+ "types": {
20
+ "import": "./dist/index.d.ts",
21
+ "require": "./dist/index.d.cts"
22
+ },
23
+ "import": "./dist/index.js",
24
+ "require": "./dist/index.cjs"
25
+ },
26
+ "./*": {
27
+ "types": {
28
+ "import": "./dist/*.d.ts",
29
+ "require": "./dist/*.d.cts"
30
+ },
31
+ "import": "./dist/*.js",
32
+ "require": "./dist/*.cjs"
33
+ }
34
+ },
35
+ "main": "./dist/index.cjs",
36
+ "module": "./dist/index.js",
37
+ "types": "./dist/index.d.ts",
38
+ "files": [
39
+ "dist"
40
+ ],
41
+ "publishConfig": {
42
+ "access": "public",
43
+ "provenance": true,
44
+ "registry": "https://registry.npmjs.org/"
45
+ },
46
+ "sideEffects": false,
47
+ "engines": {
48
+ "node": ">=20"
49
+ },
50
+ "scripts": {
51
+ "build": "turbo run _build",
52
+ "_build": "tsdown",
53
+ "prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
54
+ "lint": "turbo run _lint",
55
+ "_lint": "eslint . --fix --cache --max-warnings 0",
56
+ "typecheck": "turbo run _typecheck",
57
+ "_typecheck": "tsc --noEmit",
58
+ "test": "turbo run _test",
59
+ "_test": "vitest run --project unit",
60
+ "test:watch": "vitest --project unit",
61
+ "test:coverage": "turbo run _test:coverage",
62
+ "_test:coverage": "vitest run --project unit --coverage",
63
+ "test:smoke": "turbo run _test:smoke",
64
+ "_test:smoke": "tsdown && vitest run --project smoke",
65
+ "prepare": "husky",
66
+ "release": "semantic-release"
67
+ },
68
+ "keywords": [
69
+ "semantic-release",
70
+ "pnpm",
71
+ "workspace",
72
+ "monorepo",
73
+ "release",
74
+ "versioning",
75
+ "ci"
76
+ ],
77
+ "license": "MIT",
78
+ "packageManager": "pnpm@11.6.0",
79
+ "dependencies": {
80
+ "commander": "^15.0.0",
81
+ "tinyglobby": "^0.2.17",
82
+ "validate-npm-package-name": "^8.0.0",
83
+ "yaml": "^2.9.0"
84
+ },
85
+ "devDependencies": {
86
+ "@arethetypeswrong/cli": "^0.18.5",
87
+ "@commitlint/cli": "^21.2.2",
88
+ "@commitlint/config-conventional": "^21.2.2",
89
+ "@eslint/js": "^10.0.1",
90
+ "@exadev/eslint-config": "^2.1.1",
91
+ "@semantic-release/changelog": "^7.0.0",
92
+ "@semantic-release/commit-analyzer": "^13.0.1",
93
+ "@semantic-release/git": "^11.0.1",
94
+ "@semantic-release/github": "^12.0.9",
95
+ "@semantic-release/npm": "^13.1.5",
96
+ "@semantic-release/release-notes-generator": "^14.1.1",
97
+ "@types/node": "^26.2.0",
98
+ "@types/signale": "^1.4.7",
99
+ "@types/validate-npm-package-name": "^4.0.2",
100
+ "@vitest/coverage-v8": "^4.1.11",
101
+ "eslint": "^10.8.1",
102
+ "globals": "^17.11.0",
103
+ "husky": "^9.1.7",
104
+ "lint-staged": "^17.3.0",
105
+ "publint": "^0.3.23",
106
+ "semantic-release": "^25.0.9",
107
+ "signale": "^1.4.0",
108
+ "tsdown": "^0.22.14",
109
+ "turbo": "^2.10.11",
110
+ "typescript": "^6.0.3",
111
+ "typescript-eslint": "^8.67.0",
112
+ "vitest": "^4.1.11"
113
+ },
114
+ "peerDependencies": {
115
+ "@semantic-release/changelog": "^7.0.0",
116
+ "@semantic-release/commit-analyzer": "^13.0.1",
117
+ "@semantic-release/git": "^11.0.1",
118
+ "@semantic-release/github": "^12.0.9",
119
+ "@semantic-release/npm": "^13.1.5",
120
+ "@semantic-release/release-notes-generator": "^14.1.1",
121
+ "semantic-release": "^25.0.9"
122
+ }
5
123
  }