-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.36 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.36 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
126
127
128
129
{
"name": "changesets-gitlab",
"version": "0.13.5",
"type": "module",
"repository": "https://github.com/un-ts/changesets-gitlab.git",
"author": "JounQin <admin@1stg.me> (https://www.1stG.me)",
"funding": "https://opencollective.com/changesets-gitlab",
"license": "MIT",
"packageManager": "yarn@4.9.1",
"engines": {
"node": ">=18.0.0"
},
"bin": "lib/cli.js",
"main": "./lib/index.cjs",
"types": "./index.d.cts",
"module": "./lib/index.js",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"module-sync": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./index.d.cts",
"default": "./lib/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"index.d.cts",
"lib"
],
"keywords": [
"@changesets/cli",
"auto-release",
"changelog",
"changeset",
"changesets",
"ci",
"gitlab",
"release",
"release-automation",
"release-plz"
],
"scripts": {
"build": "run-p 'build:*'",
"build:r": "r -f cjs",
"build:ts": "tsc -p tsconfig.lib.json",
"cli": "tsx src/cli",
"format": "prettier --write .",
"lint": "run-p 'lint:*'",
"lint:es": "eslint . --cache",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks && yarn-berry-deduplicate || exit 0",
"release": "yarn build && clean-pkg-json && changeset publish",
"test": "vitest run",
"typecov": "type-coverage"
},
"dependencies": {
"@actions/core": "^2.0.3",
"@actions/exec": "^1.1.1",
"@changesets/assemble-release-plan": "^6.0.6",
"@changesets/config": "^3.1.1",
"@changesets/errors": "^0.2.0",
"@changesets/parse": "^0.4.1",
"@changesets/pre": "^2.0.2",
"@changesets/read": "^0.6.3",
"@gitbeaker/rest": "^42.2.0",
"@manypkg/get-packages": "^1.1.3",
"commander": "^13.1.0",
"dotenv": "^16.5.0",
"global-agent": "^3.0.0",
"human-id": "^4.1.1",
"markdown-table": "^3.0.4",
"mdast-util-to-string": "^4.0.0",
"micromatch": "^4.0.8",
"p-limit": "^6.2.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"resolve-from": "^5.0.0",
"semver": "^7.7.1",
"unified": "^11.0.5",
"yaml": "^2.7.1"
},
"devDependencies": {
"@1stg/common-config": "^13.0.1",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.0",
"@commitlint/cli": "^19.8.0",
"@pkgr/rollup": "^6.0.3",
"@types/global-agent": "^3.0.0",
"@types/micromatch": "^4.0.9",
"@types/web": "^0.0.228",
"@vitest/coverage-istanbul": "3.1.2",
"clean-pkg-json": "^1.2.1",
"eslint": "^9.24.0",
"nano-staged": "^0.8.0",
"npm-run-all2": "^7.0.2",
"prettier": "^3.5.3",
"simple-git-hooks": "^2.12.1",
"size-limit": "^11.2.0",
"size-limit-preset-node-lib": "^0.3.0",
"tsx": "^4.19.3",
"type-coverage": "^2.29.7",
"typescript": "^5.8.3",
"vitest": "^3.1.1",
"yarn-berry-deduplicate": "^6.1.1",
"yarn-deduplicate": "^6.0.2"
},
"resolutions": {
"prettier": "^3.5.3"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNested": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}