mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
72 lines
1.7 KiB
JSON
72 lines
1.7 KiB
JSON
{
|
|
"name": "@discordjs/scripts",
|
|
"version": "0.1.0",
|
|
"description": "A set of scripts that we use for our workflows",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "unbuild",
|
|
"lint": "prettier --check . && TIMING=1 eslint src --ext mjs,js,ts",
|
|
"format": "prettier --write . && TIMING=1 eslint src --ext mjs,js,ts --fix",
|
|
"fmt": "yarn format"
|
|
},
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs",
|
|
"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": {
|
|
"@discordjs/api-extractor-utils": "workspace:^",
|
|
"@microsoft/api-extractor-model": "^7.23.3",
|
|
"@microsoft/tsdoc": "^0.14.1",
|
|
"commander": "^9.4.0",
|
|
"tslib": "^2.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.56",
|
|
"@typescript-eslint/eslint-plugin": "^5.36.1",
|
|
"@typescript-eslint/parser": "^5.36.1",
|
|
"@vitest/coverage-c8": "^0.22.1",
|
|
"eslint": "^8.23.0",
|
|
"eslint-config-marine": "^9.4.1",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-import-resolver-typescript": "^3.5.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"prettier": "^2.7.1",
|
|
"rollup-plugin-typescript2": "^0.33.0",
|
|
"typescript": "^4.8.2",
|
|
"unbuild": "^0.8.9",
|
|
"vitest": "^0.22.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.9.0"
|
|
}
|
|
}
|