137 lines
3.1 KiB
JSON
137 lines
3.1 KiB
JSON
{
|
|
"name": "release-it",
|
|
"version": "19.0.5",
|
|
"description": "Generic CLI tool to automate versioning and package publishing-related tasks.",
|
|
"keywords": [
|
|
"build",
|
|
"changelog",
|
|
"commit",
|
|
"distribution",
|
|
"git",
|
|
"github",
|
|
"gitlab",
|
|
"interactive",
|
|
"ci",
|
|
"npm",
|
|
"publish",
|
|
"push",
|
|
"release",
|
|
"release-it",
|
|
"repository",
|
|
"script",
|
|
"shell",
|
|
"tag",
|
|
"tool",
|
|
"version",
|
|
"semver",
|
|
"plugin"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/release-it/release-it.git"
|
|
},
|
|
"homepage": "https://github.com/release-it/release-it#readme",
|
|
"bugs": "https://github.com/release-it/release-it/issues",
|
|
"funding": [
|
|
{
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/webpro"
|
|
},
|
|
{
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/webpro"
|
|
}
|
|
],
|
|
"bin": {
|
|
"release-it": "bin/release-it.js"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./types/index.d.ts",
|
|
"import": "./lib/index.js",
|
|
"require": "./lib/index.js"
|
|
},
|
|
"./package.json": "./package.json",
|
|
"./test/util/index.js": "./test/util/index.js"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"config",
|
|
"lib",
|
|
"test",
|
|
"schema",
|
|
"types"
|
|
],
|
|
"types": "./types/index.d.ts",
|
|
"scripts": {
|
|
"knip": "knip",
|
|
"lint": "eslint lib test",
|
|
"format": "prettier --write eslint.config.mjs \"{lib,test}/**/*.js\"",
|
|
"docs": "remark README.md 'docs/**/*.md' '.github/*.md' -o",
|
|
"test": "node --env-file=.env.test --test && installed-check",
|
|
"release": "./bin/release-it.js"
|
|
},
|
|
"author": {
|
|
"email": "lars@webpro.nl",
|
|
"name": "Lars Kappert"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@nodeutils/defaults-deep": "1.1.0",
|
|
"@octokit/rest": "22.0.0",
|
|
"@phun-ky/typeof": "2.0.3",
|
|
"async-retry": "1.3.3",
|
|
"c12": "3.3.0",
|
|
"ci-info": "^4.3.0",
|
|
"eta": "4.0.1",
|
|
"git-url-parse": "16.1.0",
|
|
"inquirer": "12.9.6",
|
|
"issue-parser": "7.0.1",
|
|
"lodash.merge": "4.6.2",
|
|
"mime-types": "3.0.1",
|
|
"new-github-release-url": "2.0.0",
|
|
"open": "10.2.0",
|
|
"ora": "9.0.0",
|
|
"os-name": "6.1.0",
|
|
"proxy-agent": "6.5.0",
|
|
"semver": "7.7.2",
|
|
"tinyglobby": "0.2.15",
|
|
"undici": "6.21.3",
|
|
"url-join": "5.0.0",
|
|
"wildcard-match": "5.1.4",
|
|
"yargs-parser": "21.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/compat": "1.3.2",
|
|
"@eslint/eslintrc": "3.3.1",
|
|
"@eslint/js": "9.35.0",
|
|
"@octokit/request-error": "7.0.0",
|
|
"@types/node": "24.5.2",
|
|
"eslint": "9.35.0",
|
|
"eslint-plugin-import-x": "4.16.1",
|
|
"globals": "16.4.0",
|
|
"installed-check": "9.3.0",
|
|
"knip": "5.63.1",
|
|
"mentoss": "0.11.0",
|
|
"mock-stdio": "1.0.3",
|
|
"prettier": "3.6.2",
|
|
"remark-cli": "12.0.1",
|
|
"remark-preset-webpro": "1.1.1",
|
|
"tar": "7.4.3",
|
|
"typescript": "5.9.2"
|
|
},
|
|
"overrides": {
|
|
"pac-resolver": "7.0.1",
|
|
"socks": "2.8.3"
|
|
},
|
|
"engines": {
|
|
"node": "^20.12.0 || >=22.0.0"
|
|
},
|
|
"remarkConfig": {
|
|
"plugins": [
|
|
"preset-webpro"
|
|
]
|
|
}
|
|
}
|