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