-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 KB
/
package.json
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
{
"name": "@kherock/yarn-plugin-release",
"version": "4.0.1",
"license": "BSD-2-Clause",
"main": "./sources/index.ts",
"author": "Kyle Herock <[email protected]>",
"dependencies": {
"@yarnpkg/cli": "^4.1.1",
"@yarnpkg/core": "^4.0.3",
"@yarnpkg/fslib": "^3.0.2",
"@yarnpkg/plugin-pnp": "^4.0.2",
"calver": "22.8.4",
"clipanion": "^4.0.0-rc.3",
"conventional-changelog-core": "^7.0.0",
"conventional-changelog-preset-loader": "^4.1.0",
"conventional-recommended-bump": "^9.0.0",
"git-semver-tags": "^7.0.1",
"multistream": "^4.1.0",
"semver": "^7.5.4",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/conventional-changelog-core": "^4.2.7",
"@types/conventional-recommended-bump": "^9.0.3",
"@types/git-semver-tags": "^7.0.0",
"@types/semver": "^7.5.6",
"@yarnpkg/builder": "^4.0.0",
"typescript": "~5.2.2"
},
"peerDependencies": {
"conventional-changelog-conventionalcommits": "*"
},
"peerDependenciesMeta": {
"conventional-changelog-conventionalcommits": {
"optional": true
}
},
"scripts": {
"build:compile": "tsc --build",
"build:plugin-release": "builder build plugin",
"update-local": "yarn build:plugin-release",
"postpack": "rm -rf lib",
"postrelease": "git add bundles",
"prepack": "run build:compile"
},
"publishConfig": {
"main": "./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kherock/yarn-plugins.git",
"directory": "packages/plugin-release"
},
"files": [
"lib/"
],
"engines": {
"node": ">=18.12.0"
}
}