-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
71 lines (71 loc) · 1.74 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"description": "Create a discord bot with TypeScript and Decorators!",
"keywords": [
"api",
"bot",
"client",
"decorators",
"discord",
"framework",
"library",
"tool",
"typescript"
],
"homepage": "https://discordx.js.org",
"bugs": {
"url": "https://github.com/discordx-ts/discordx/issue",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/discordx-ts/discordx"
},
"license": "Apache-2.0",
"contributors": [
"Vijay Meena <[email protected]> (https://github.com/vijayymmeena)"
],
"scripts": {
"build": "turbo run build",
"build:typedoc": "turbo run build:typedoc",
"format": "prettier --write .",
"lint": "eslint ./",
"prepare": "npx is-ci || npx husky install",
"prettier": "prettier --check .",
"test": "turbo run test"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-angular": "^19.5.0",
"@eslint/js": "^9.10.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"minipass": "^7.1.2",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"turbo": "^2.1.1",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "restricted"
}
}