mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
* ci: better release workflow * ci: simplify + use changelog * ci(release): better parsing and exclusions * ci(release): remove tree log * ci(release): improve logs * ci(release): properly check inputs * ci(release): better promise handling Co-authored-by: Aura <kyradiscord@gmail.com> * ci: refactor release to use bun * ci(release): whitespace Co-authored-by: Vlad Frangu <kingdgrizzle@gmail.com> * ci(release): add dev release handling * ci(release): fixes from testing * ci(release): make the promise run * ci(release): when specifying package, skip exclusions * ci(dev): create-discord-bot dev release * ci(release): improve changelog detection * ci: fix typo and allow releasing branches * ci(release): set make_latest for gh releases * ci(release): add ssh_key so pushed tags run workflow --------- Co-authored-by: Aura <kyradiscord@gmail.com> Co-authored-by: Vlad Frangu <kingdgrizzle@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
80 lines
2.0 KiB
JSON
80 lines
2.0 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@discordjs/actions",
|
|
"version": "0.1.0",
|
|
"description": "A set of actions that we use for our workflows",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "vitest run --config ../../vitest.config.ts",
|
|
"build": "tsc --noEmit --lib ESNext,DOM && tsup",
|
|
"lint": "prettier --check . && cross-env TIMING=1 eslint --format=pretty src __tests__",
|
|
"format": "prettier --write . && cross-env TIMING=1 eslint --fix --format=pretty src __tests__",
|
|
"fmt": "pnpm run format"
|
|
},
|
|
"type": "module",
|
|
"directories": {
|
|
"lib": "src",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"contributors": [
|
|
"Crawl <icrawltogo@gmail.com>"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"api",
|
|
"bot",
|
|
"client",
|
|
"node",
|
|
"discordjs"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/discordjs/discord.js.git",
|
|
"directory": "packages/actions"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/discordjs/discord.js/issues"
|
|
},
|
|
"homepage": "https://discord.js.org",
|
|
"funding": "https://github.com/discordjs/discord.js?sponsor",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/github": "^6.0.1",
|
|
"@actions/glob": "^0.5.0",
|
|
"@aws-sdk/client-s3": "^3.844.0",
|
|
"@discordjs/scripts": "workspace:^",
|
|
"@vercel/blob": "^1.1.1",
|
|
"@vercel/postgres": "^0.10.0",
|
|
"cloudflare": "^4.4.1",
|
|
"commander": "^14.0.0",
|
|
"meilisearch": "^0.38.0",
|
|
"p-limit": "^6.2.0",
|
|
"p-queue": "^8.1.0",
|
|
"tslib": "^2.8.1",
|
|
"undici": "7.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@npm/types": "^2.1.0",
|
|
"@types/bun": "^1.2.19",
|
|
"@types/node": "^22.16.3",
|
|
"@vitest/coverage-v8": "^3.2.4",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^9.30.1",
|
|
"eslint-config-neon": "^0.2.7",
|
|
"eslint-formatter-compact": "^8.40.0",
|
|
"eslint-formatter-pretty": "^6.0.1",
|
|
"prettier": "^3.6.2",
|
|
"terser": "^5.43.1",
|
|
"tsup": "^8.5.0",
|
|
"turbo": "^2.5.4",
|
|
"typescript": "~5.8.3",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.12.0"
|
|
}
|
|
}
|