This repository was archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.04 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.04 KB
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
{
"name": "neph",
"version": "1.0.0",
"main": "dist/index.js",
"private": true,
"author": "@somelist",
"license": "UNLICENSED",
"type": "module",
"packageManager": "pnpm@7.22.0",
"imports": {
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js",
"#utils/*": "./dist/lib/util/*.js"
},
"scripts": {
"build": "tsc -b src",
"dev": "pnpm build && pnpm start",
"postinstall": "husky install .github/husky",
"lint": "eslint --fix --ext ts src",
"start": "node --enable-source-maps dist/main.js",
"format": "prettier --write --loglevel=warn \"src/**/*.{js,ts,mts,json}\"",
"update:i": "pnpm update --interactive",
"update:l": "pnpm update --latest"
},
"dependencies": {
"@kaname-png/plugin-subcommands-advanced": "^2.1.8",
"@sapphire/decorators": "^5.0.0",
"@sapphire/discord.js-utilities": "^5.1.2",
"@sapphire/framework": "^3.2.0",
"@sapphire/pieces": "^3.6.0",
"@sapphire/plugin-logger": "^3.0.1",
"@sapphire/plugin-subcommands": "^3.2.4",
"@sapphire/type": "^2.3.0",
"@sapphire/utilities": "^3.11.0",
"@skyra/env-utilities": "^1.1.0",
"colorette": "^2.0.19",
"discord-api-types": "0.37.14",
"discord.js": "^13.12.0",
"tslib": "^2.4.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@sapphire/eslint-config": "^4.3.8",
"@sapphire/prettier-config": "^1.4.4",
"@sapphire/ts-config": "^3.3.4",
"@types/eslint": "^8.4.10",
"@types/node": "^18.11.18",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"pretty-quick": "^3.1.3",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=18.0.0"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"discord-api-types": "^0.37.12",
"minimist": "^1.2.7"
},
"prettier": "@sapphire/prettier-config",
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
}
}