mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"name": "@discordjs/actions",
|
|
"version": "0.1.0-dev",
|
|
"description": "A set of actions that we use for our workflows",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"lint": "prettier --check . && eslint src __tests__ --ext mjs,js,ts",
|
|
"format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js",
|
|
"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"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/discordjs/discord.js/issues"
|
|
},
|
|
"homepage": "https://discord.js.org",
|
|
"dependencies": {
|
|
"@actions/core": "^1.8.2",
|
|
"tslib": "^2.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.38",
|
|
"@typescript-eslint/eslint-plugin": "^5.27.1",
|
|
"@typescript-eslint/parser": "^5.27.1",
|
|
"eslint": "^8.17.0",
|
|
"eslint-config-marine": "^9.4.1",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"prettier": "^2.6.2",
|
|
"tsup": "^6.1.0",
|
|
"typescript": "^4.7.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.9.0"
|
|
}
|
|
}
|