-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
127 lines (127 loc) · 3.32 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
121
122
123
124
125
126
127
{
"name": "@sapphire/framework",
"version": "5.3.1",
"description": "Discord bot framework built for advanced and amazing bots.",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/cjs/index.d.cts",
"exports": {
"import": {
"types": "./dist/esm/index.d.mts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"author": "@sapphire",
"license": "MIT",
"scripts": {
"lint": "eslint src tests --ext mjs,ts --fix",
"format": "prettier --write \"{src,tests}/**/*.ts\"",
"docs": "typedoc-json-parser",
"test": "vitest run",
"test:watch": "vitest",
"update": "yarn upgrade-interactive",
"typecheck": "tsc -p tsconfig.eslint.json",
"build": "tsup",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"prepack": "yarn build && concurrently \"yarn:prepack:*\"",
"prepack:cjs": "rollup-type-bundler -d dist/cjs -ot .cts",
"prepack:esm": "rollup-type-bundler -d dist/esm -t .mts"
},
"dependencies": {
"@discordjs/builders": "^1.9.0",
"@sapphire/discord-utilities": "^3.4.3",
"@sapphire/discord.js-utilities": "^7.3.1",
"@sapphire/lexure": "^1.1.10",
"@sapphire/pieces": "^4.3.1",
"@sapphire/ratelimits": "^2.4.11",
"@sapphire/result": "^2.7.2",
"@sapphire/stopwatch": "^1.5.4",
"@sapphire/utilities": "^3.18.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@favware/cliff-jumper": "^5.0.0",
"@favware/npm-deprecate": "^2.0.0",
"@favware/rollup-type-bundler": "^3.3.0",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/node-utilities": "^1.0.2",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^22.9.0",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.4",
"concurrently": "^9.1.0",
"cz-conventional-changelog": "^3.3.0",
"discord.js": "^14.16.3",
"esbuild-plugin-file-path-extensions": "^2.1.3",
"esbuild-plugin-version-injector": "^1.2.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-prettier": "^5.2.1",
"gen-esm-wrapper": "^1.1.3",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typedoc": "^0.26.11",
"typedoc-json-parser": "^10.2.0",
"typescript": "~5.4.5",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapphiredev/framework.git"
},
"files": [
"dist/"
],
"engines": {
"node": ">=v18",
"npm": ">=7"
},
"keywords": [
"bot",
"typescript",
"ts",
"yarn",
"discord",
"sapphire",
"standalone"
],
"bugs": {
"url": "https://github.com/sapphiredev/framework/issues"
},
"homepage": "https://www.sapphirejs.dev",
"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"
}
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "[email protected]"
}