generated from sapphiredev/sapphire-template
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
92 lines (92 loc) · 2.43 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
{
"name": "spinel",
"version": "2.0.0",
"description": "Slash Commands handler Sapphire Discord server",
"author": "@sapphire <[email protected]>",
"license": "MIT",
"private": true,
"main": "dist/main.js",
"type": "module",
"imports": {
"#lib/*": "./dist/lib/*.js",
"#utils/*": "./dist/lib/util/*.js",
"#types/*": "./dist/lib/types/*.js",
"#constants/*": "./dist/lib/constants/*.js"
},
"scripts": {
"lint": "eslint src tests --ext ts --fix",
"format": "prettier --write src tests",
"test": "vitest run",
"typecheck": "tsc -b src",
"start": "node --preserve-symlinks --enable-source-maps dist/main.js",
"build": "tsup",
"watch": "tsup --watch",
"dev": "tsup --watch --onSuccess \"yarn start\"",
"clean": "rimraf dist/",
"validate-tags": "tsx scripts/validate-tags.ts"
},
"dependencies": {
"@discordjs/builders": "^1.8.2",
"@discordjs/collection": "^2.1.0",
"@sapphire/fetch": "^3.0.5",
"@sapphire/result": "^2.7.2",
"@sapphire/utilities": "^3.18.1",
"@skyra/env-utilities": "^1.3.0",
"@skyra/http-framework": "^2.2.0",
"@skyra/jaro-winkler": "^1.1.1",
"he": "^1.2.0",
"ioredis": "^5.4.2",
"smol-toml": "^1.3.1",
"turndown": "^7.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/he": "^1.2.3",
"@types/node": "^22.10.5",
"@types/turndown": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.8",
"colorette": "^2.0.20",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.24.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "~5.4.5",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": "@sapphire/prettier-config",
"eslintConfig": {
"extends": "@sapphire"
},
"packageManager": "[email protected]"
}