-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
65 lines (65 loc) · 1.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
{
"name": "discordx",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"**/*"
],
"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/templates/issue",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/discordx-ts/templates"
},
"license": "Apache-2.0",
"contributors": [
"Vijay Meena <[email protected]> (https://github.com/samarmeena)"
],
"scripts": {
"build": "turbo run build --parallel",
"fix:prettier": "prettier --write .",
"prettier": "prettier --check .",
"lint": "eslint ./",
"prepare": "is-ci || husky install",
"test": "turbo run test --parallel"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-angular": "^19.7.0",
"@eslint/js": "^9.19.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"prettier": "^3.4.2",
"turbo": "^2.3.4",
"typescript": "5.7.3",
"typescript-eslint": "^8.21.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "restricted"
}
}