mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
103 lines
1.9 KiB
JSON
103 lines
1.9 KiB
JSON
{
|
|
"name": "@discordjs/discord.js",
|
|
"version": "0.0.0",
|
|
"description": "A powerful library for interacting with the Discord API",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"test": "turbo run test",
|
|
"lint": "turbo run lint",
|
|
"format": "turbo run format",
|
|
"fmt": "turbo run format",
|
|
"postinstall": "is-ci || husky install",
|
|
"docs": "turbo run docs",
|
|
"changelog": "turbo run changelog",
|
|
"update": "yarn upgrade-interactive --latest"
|
|
},
|
|
"contributors": [
|
|
"Crawl <icrawltogo@gmail.com>",
|
|
"Amish Shah <amishshah.2k@gmail.com>",
|
|
"Vlad Frangu <kingdgrizzle@gmail.com>",
|
|
"SpaceEEC <spaceeec@yahoo.com>",
|
|
"Antonio Roman <kyradiscord@gmail.com>"
|
|
],
|
|
"keywords": [
|
|
"discord",
|
|
"api",
|
|
"bot",
|
|
"client",
|
|
"node",
|
|
"discordapp"
|
|
],
|
|
"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",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^16.0.2",
|
|
"@commitlint/config-angular": "^16.0.0",
|
|
"@favware/npm-deprecate": "^1.0.4",
|
|
"conventional-changelog-cli": "^2.2.2",
|
|
"husky": "^7.0.4",
|
|
"prettier": "^2.5.1",
|
|
"turbo": "1.0.24"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.9.0"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"turbo": {
|
|
"baseBranch": "origin/main",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
"docs/docs.json"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"coverage/**"
|
|
]
|
|
},
|
|
"lint": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"format": {
|
|
"outputs": []
|
|
},
|
|
"docs": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"docs/docs.json"
|
|
]
|
|
},
|
|
"changelog": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"CHANGELOG.md"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|