This repository has been archived by the owner on Apr 16, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.38 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
{
"name": "@sapphire/template",
"version": "0.0.1",
"description": "template",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "@sapphire",
"license": "MIT",
"scripts": {
"lint": "eslint src tests --ext ts --fix",
"format": "prettier --write {src,tests}/**/*.ts",
"docs": "typedoc",
"test": "jest",
"test:watch": "jest --watch",
"update": "yarn upgrade-interactive",
"build": "tsc -b src",
"clean": "tsc -b src --clean",
"watch": "tsc -b src -w",
"sversion": "standard-version",
"commit": "git-cz",
"cz": "git-cz",
"postinstall": "husky install .github/husky",
"prepack": "yarn build && pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"tslib": "^2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@sapphire/eslint-config": "^4.4.1",
"@sapphire/prettier-config": "^1.4.5",
"@sapphire/ts-config": "^4.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"pinst": "^3.0.0",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.2",
"typedoc-plugin-mdn-links": "^3.0.3",
"typescript": "^5.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapphiredev/sapphire-template.git"
},
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"engines": {
"node": ">=v14.0.0",
"npm": ">=7.0.0"
},
"keywords": [
"@sapphire/template",
"bot",
"typescript",
"ts",
"yarn",
"discord",
"sapphire",
"discordjs"
],
"bugs": {
"url": "https://github.com/sapphiredev/sapphire-template/issues"
},
"homepage": "https://www.sapphirejs.dev",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@3.5.0"
}