forked from discordjs/discord.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"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",
"build:affected": "turbo run build --filter='...[origin/main]'",
"build:apps": "turbo run build:local --filter='...{apps/*}'",
"build:apps:affected": "turbo run build:local --filter='...{apps/*}[origin/main]'",
"test": "turbo run test --parallel",
"test:affected": "turbo run test --filter='...[origin/main]' --parallel",
"lint": "turbo run lint --parallel",
"lint:affected": "turbo run lint --filter='...[origin/main]' --parallel",
"format": "turbo run format --parallel",
"format:affected": "turbo run format --filter='...[origin/main]' --parallel",
"fmt": "turbo run format --parallel",
"fmt:affected": "turbo run format --filter='...[origin/main]' --parallel",
"docs": "turbo run docs --parallel",
"docs:affected": "turbo run docs --filter='...[origin/main]' --parallel",
"postinstall": "is-ci || husky install",
"update": "yarn upgrade-interactive",
"create-package": "node packages/scripts/src/packageScript.mjs"
},
"contributors": [
"Crawl <[email protected]>",
"Amish Shah <[email protected]>",
"Vlad Frangu <[email protected]>",
"SpaceEEC <[email protected]>",
"Aura Román <[email protected]>"
],
"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": "^17.4.1",
"@commitlint/config-angular": "^17.4.0",
"@favware/cliff-jumper": "^1.10.0",
"@favware/npm-deprecate": "^1.0.7",
"conventional-changelog-cli": "^2.2.2",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.1.0",
"tsup": "^6.5.0",
"turbo": "^1.7.0",
"typescript": "^4.9.4",
"unocss": "^0.48.3",
"vitest": "^0.27.1"
},
"resolutions": {
"@microsoft/tsdoc-config": "patch:@microsoft/tsdoc-config@npm%3A0.16.2#./.yarn/patches/@microsoft-tsdoc-config-npm-0.16.2-30fd115d09.patch"
},
"engines": {
"node": ">=16.9.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "[email protected]"
}