This repository has been archived by the owner on Jan 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
96 lines (96 loc) · 2.57 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "discord.js",
"description": "A powerful library for interacting with the Discord API",
"private": true,
"scripts": {
"test": "yarn build && jest --collect-coverage",
"test:ci": "jest --no-stack-trace --verbose --pass-with-no-tests",
"build": "yarn clean && tsc --build packages/core packages/rest packages/ws --force",
"clean": "rimraf \"packages/**/dist\" \"packages/**/*.tsbuildinfo\"",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,js,json,yml,yaml}\"",
"update": "yarn upgrade-interactive",
"prepare": "husky install",
"lerna": "env-cmd lerna",
"canary-release": "env-cmd lerna publish --conventional-prerelease --pre-dist-tag canary --preid \"canary\"",
"graduate-release": "env-cmd lerna publish --conventional-graduate",
"release": "env-cmd lerna publish"
},
"contributors": [
"Crawl <[email protected]>",
"Amish Shah <[email protected]>",
"SpaceEEC <[email protected]>",
"Vlad Frangu <[email protected]>",
"Antonio Roman <[email protected]>"
],
"license": "Apache-2.0",
"keywords": [
"discord",
"api",
"bot",
"client",
"node",
"discordapp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/discordjs/discord.js-modules.git"
},
"bugs": {
"url": "https://github.com/discordjs/discord.js-modules/issues"
},
"homepage": "https://github.com/discordjs/discord.js-modules",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-decorators": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-angular": "^15.0.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-plugin-const-enum": "^1.2.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"conventional-changelog-cli": "^2.1.1",
"env-cmd": "^10.1.0",
"eslint": "^8.5.0",
"eslint-config-marine": "^9.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.4.5",
"lerna": "^4.0.0",
"lint-staged": "^12.1.3",
"nock": "^13.2.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"tsup": "^5.11.6",
"turbo": "^1.0.19",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=16.0.0"
},
"workspaces": [
"packages/*"
],
"turbo": {
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**"
]
},
"lint": {
"dependsOn": [],
"outputs": []
}
}
},
"packageManager": "[email protected]"
}