-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
147 lines (147 loc) · 4.95 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "@anolilab/semantic-release-preset",
"version": "10.0.3",
"description": "Semantic-release predefined presets.",
"keywords": [
"anolilab",
"semantic-release",
"semantic-release-config",
"changelog",
"publish",
"release",
"npm",
"pnpm",
"github",
"git",
"@anolilab/semantic-release-pnpm",
"@semantic-release/changelog",
"@semantic-release/commit-analyzer",
"@semantic-release/exec",
"@semantic-release/git",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/release-notes-generator"
],
"homepage": "https://github.com/anolilab/semantic-release/tree/main/packages/semantic-release-preset",
"repository": {
"type": "git",
"url": "https://github.com/anolilab/semantic-release.git",
"directory": "packages/semantic-release-preset"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/prisis"
},
{
"type": "consulting",
"url": "https://anolilab.com/support"
}
],
"license": "MIT",
"author": {
"name": "Daniel Bannert",
"email": "d.bannert@anolilab.de"
},
"exports": {
".": {
"require": "./config/without-npm.json",
"import": "./config/without-npm.json"
},
"./npm": {
"require": "./config/with-npm.json",
"import": "./config/with-npm.json"
},
"./pnpm": {
"require": "./config/with-pnpm.json",
"import": "./config/with-pnpm.json"
},
"./yarn": {
"require": "./config/with-yarn.json",
"import": "./config/with-yarn.json"
},
"./package.json": "./package.json"
},
"main": "config/without-npm.json",
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE.md",
"config"
],
"scripts": {
"build": "echo 'There is no need for build' && exit 0",
"build:prod": "echo 'There is no need for build' && exit 0",
"clean": "rimraf node_modules dist .eslintcache",
"dev": "echo 'There is no need for dev' && exit 0",
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
"lint:packagejson": "publint --strict",
"lint:prettier": "prettier --config=.prettierrc.cjs --check .",
"lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
"lint:types": "echo 'There is no need for types' && exit 0",
"test": "echo 'There is no need for test' && exit 0",
"test:coverage": "echo 'There is no need for test' && exit 0",
"test:ui": "echo 'There is no need for test' && exit 0",
"test:watch": "echo 'There is no need for test' && exit 0"
},
"dependencies": {
"@anolilab/semantic-release-clean-package-json": "2.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/exec": "^7.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/release-notes-generator": "14.0.3",
"conventional-changelog-conventionalcommits": "8.0.0"
},
"devDependencies": {
"@anolilab/eslint-config": "^15.0.3",
"@anolilab/prettier-config": "^5.0.14",
"@anolilab/semantic-release-pnpm": "1.1.10",
"@babel/core": "^7.26.8",
"@rushstack/eslint-plugin-security": "^0.8.3",
"@secretlint/secretlint-rule-preset-recommend": "^9.0.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.21.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
"eslint-plugin-mdx": "^3.1.5",
"prettier": "^3.5.0",
"rimraf": "^6.0.1",
"secretlint": "9.0.0",
"semantic-release": "^24.2.2",
"sort-package-json": "^2.14.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@anolilab/semantic-release-pnpm": "1.1.10",
"@semantic-release/npm": "^12.0.1",
"semantic-release": "^24.2.1",
"semantic-release-yarn": "^3.0.2"
},
"peerDependenciesMeta": {
"@anolilab/semantic-release-pnpm": {
"optional": true
},
"@semantic-release/npm": {
"optional": true
},
"semantic-release-yarn": {
"optional": true
}
},
"engines": {
"node": "^18.17 || >=20.6.1"
},
"os": [
"darwin",
"linux",
"win32"
],
"publishConfig": {
"access": "public",
"provenance": true
}
}