forked from discordx-ts/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.96 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"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://discord-ts.js.org",
"bugs": {
"url": "https://github.com/oceanroleplay/discord.ts/issue",
"email": "indianoceanroleplay@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/oceanroleplay/discord.ts"
},
"license": "Apache-2.0",
"contributors": [
"Vijay Meena <indianoceanroleplay@gmail.com> (https://github.com/oceanroleplay)"
],
"scripts": {
"build": "turbo run build --parallel",
"build:changelog": "npm run build:changelog:docs && turbo run build:changelog --parallel",
"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.0.3",
"@commitlint/config-angular": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"prettier": "^2.7.1",
"turbo": "^1.3.1"
},
"turbo": {
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"build/**"
]
},
"build:changelog": {
"dependsOn": [
"^build:changelog"
]
},
"test": {
"dependsOn": [
"^test"
]
}
}
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "restricted"
}
}