mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 08:03:30 +01:00
67 lines
1.5 KiB
JSON
67 lines
1.5 KiB
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",
|
|
"build": "tsup",
|
|
"lint": "prettier --check . && cross-env TIMING=1 eslint src __tests__ --ext .mjs,.js,.ts --format=pretty",
|
|
"format": "prettier --write . && cross-env TIMING=1 eslint src __tests__ --ext .mjs,.js,.ts --fix --format=pretty",
|
|
"fmt": "yarn format"
|
|
},
|
|
"type": "module",
|
|
"main": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"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",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/glob": "^0.4.0",
|
|
"@planetscale/database": "^1.7.0",
|
|
"tslib": "^2.5.0",
|
|
"undici": "^5.22.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "16.18.25",
|
|
"@vitest/coverage-c8": "^0.30.1",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.39.0",
|
|
"eslint-config-neon": "^0.1.46",
|
|
"eslint-formatter-pretty": "^5.0.0",
|
|
"prettier": "^2.8.8",
|
|
"tsup": "^6.7.0",
|
|
"turbo": "^1.9.4-canary.7",
|
|
"typescript": "^5.0.4",
|
|
"vitest": "^0.30.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.9.0"
|
|
}
|
|
}
|