-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.63 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@suin/semantic-release-yarn",
"version": "1.1.0",
"description": "semantic-release plugin to publish a npm package with yarn@berry",
"keywords": [
"semantic-release",
"yarn",
"yarn2",
"yarn3",
"yarn-berry",
"publish",
"version"
],
"homepage": "https://github.com/suin/semantic-release-yarn#readme",
"bugs": {
"url": "https://github.com/suin/semantic-release-yarn/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/suin/semantic-release-yarn.git"
},
"license": "MIT",
"author": {
"name": "suin",
"url": "https://twitter.com/suin"
},
"type": "commonjs",
"exports": {
".": {
"require": "./index.js",
"types": "./index.d.ts"
}
},
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"*.{js,ts,map}",
"**/*.{js,ts,map}",
"!*.{test,spec}.*",
"!testUtils.*"
],
"scripts": {
"build": "tsc",
"test": "vitest *.test.ts --threads false --run",
"test:watch": "vitest *.test.ts --threads false"
},
"dependencies": {
"@semantic-release/error": "^3.0.0",
"execa": "^5.1.1",
"read-pkg": "5.2.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@suin/tsconfig": "^0.0.0",
"@types/semver": "^7.3.9",
"conventional-changelog-conventionalcommits": "^4.6.3",
"semantic-release": "^19.0.2",
"tempy": "^1.0.1",
"typescript": "^4.5.5",
"vitest": "^0.2.8"
},
"engines": {
"node": ">=16.9"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@3.1.0"
}