-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
120 lines (120 loc) · 2.4 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"$schema": "http://json.schemastore.org/package",
"name": "resource-webhooks",
"version": "0.1.0",
"description": "",
"contributors": [
"Crawl <[email protected]>"
],
"license": "MIT",
"private": true,
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "rimraf dist && tsc",
"deploy": "node --unhandled-rejections=strict dist/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prettier": "prettier --write **/*.{ts,js,json,yml,yaml}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discordjs/resource-webhooks.git"
},
"bugs": {
"url": "https://github.com/discordjs/resource-webhooks/issues"
},
"homepage": "https://github.com/discordjs/resource-webhooks#readme",
"keywords": [
"discord",
"api",
"webhook",
"discordapp"
],
"dependencies": {
"discord.js": "^14.11.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-angular": "^17.6.3",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"discord-api-types": "^0.37.43",
"eslint": "^8.41.0",
"eslint-config-marine": "^9.4.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^4.3.8",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=16.9.0"
},
"eslintConfig": {
"extends": "marine/prettier/node",
"parserOptions": {
"project": "./tsconfig.eslint.json"
},
"rules": {
"@typescript-eslint/naming-convention": 0
}
},
"prettier": {
"printWidth": 120,
"useTabs": true,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "all",
"endOfLine": "lf"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml,yaml}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"type-enum": [
2,
"always",
[
"chore",
"build",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"types",
"wip"
]
]
}
},
"packageManager": "[email protected]"
}