mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
81 lines
1.8 KiB
JSON
81 lines
1.8 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@discordjs/scripts",
|
|
"version": "0.1.0",
|
|
"description": "A set of scripts that we use for our workflows",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"lint": "prettier --check . && cross-env TIMING=1 eslint --format=pretty src turbo",
|
|
"format": "prettier --write . && cross-env TIMING=1 eslint --fix --format=pretty src turbo",
|
|
"fmt": "yarn format"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"require": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
}
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"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",
|
|
"directory": "packages/scripts"
|
|
},
|
|
"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.27.6",
|
|
"@microsoft/tsdoc": "0.14.2",
|
|
"@microsoft/tsdoc-config": "0.16.2",
|
|
"tslib": "^2.6.2",
|
|
"undici": "5.23.0",
|
|
"yaml": "2.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@turbo/gen": "^1.10.13",
|
|
"@types/node": "16.18.44",
|
|
"@vitest/coverage-v8": "^0.34.2",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.47.0",
|
|
"eslint-config-neon": "^0.1.56",
|
|
"eslint-formatter-pretty": "^5.0.0",
|
|
"prettier": "^3.0.2",
|
|
"tsup": "^7.2.0",
|
|
"turbo": "^1.10.13",
|
|
"typescript": "^5.1.6",
|
|
"vitest": "^0.34.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.11.0"
|
|
}
|
|
}
|