forked from discordx-ts/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.63 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
{
"name": "discordx",
"version": "0.0.0",
"private": true,
"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",
"build:changelog": "npm run build:changelog:docs && turbo run build:changelog --parallel",
"fix:prettier": "prettier --write .",
"prettier": "prettier --check .",
"lint": "eslint ./",
"prepare": "is-ci || husky install",
"test": "turbo run test --parallel"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-angular": "^18.4.3",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-typescript-sort-keys": "^3.1.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"prettier": "^3.1.1",
"turbo": "^1.11.2",
"typescript": "5.3.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "restricted"
}
}