mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
60 lines
1.2 KiB
JSON
60 lines
1.2 KiB
JSON
{
|
|
"name": "@discordjs/scripts",
|
|
"version": "0.1.0-dev",
|
|
"description": "A set of scripts that we use for our workflows",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"build": "tsup",
|
|
"lint": "prettier --cache --check . && eslint src --ext mjs,js,ts --cache",
|
|
"format": "prettier --cache --write . && eslint src --ext mjs,js,ts --fix --cache"
|
|
},
|
|
"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"
|
|
},
|
|
"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": {
|
|
"commander": "^9.3.0",
|
|
"tslib": "^2.4.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.0.0",
|
|
"eslint": "^8.18.0",
|
|
"prettier": "^2.7.1",
|
|
"tsup": "^6.1.2",
|
|
"typescript": "^4.7.4"
|
|
}
|
|
}
|