forked from discordx-ts/discordx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
{
"name": "discordx",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Create a discord bot with TypeScript and Decorators!",
"keywords": [
"typescript",
"discord",
"bot",
"client",
"api",
"library",
"framework",
"tool",
"decorators"
],
"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/samarmeena)"
],
"scripts": {
"build": "turbo run build --parallel",
"build:typedoc": "turbo run build:typedoc --parallel --no-cache",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint ./",
"prepare": "npx is-ci || npx husky install",
"test": "turbo run test --parallel"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-angular": "^17.3.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"husky": "^8.0.2",
"is-ci": "^3.0.1",
"minipass": "^4.0.0",
"prettier": "^2.8.0",
"turbo": "^1.6.3",
"typedoc": "^0.23.21",
"typescript": "4.9.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "restricted"
}
}