-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
66 lines (66 loc) · 1.65 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,
"packageManager": "npm@7.0.0",
"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": "indianoceanroleplay@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/discordx-ts/templates"
},
"license": "Apache-2.0",
"contributors": [
"Vijay Meena <indianoceanroleplay@gmail.com> (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.3.0",
"@commitlint/config-angular": "^19.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"prettier": "^3.3.2",
"turbo": "^2.0.4",
"typescript": "5.4.5"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "restricted"
}
}