-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 3.07 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
{
"name": "nino",
"description": "Multipurpose Discord Bot built on Sapphire Framework",
"author": "Sebazz",
"version": "2.0.4",
"license": "Apache-2.0",
"type": "module",
"main": "dist/Nino.js",
"scripts": {
"build": "tsup --format esm",
"clean": "node scripts/clean.mjs",
"start": "node --preserve-symlinks --enable-source-maps ./dist/Nino.js",
"prisma": "prisma generate",
"lint": "eslint src --ext ts --fix",
"format": "prettier --write --loglevel=warn \"src/**/*.{js,ts,json}\"",
"dev": "tsup --watch --onSuccess \"yarn start\"",
"deploy": "yarn build && yarn start",
"update": "yarn upgrade-interactive",
"prepare": "husky install .github/husky"
},
"packageManager": "yarn@3.2.3",
"dependencies": {
"@kaname-png/plugin-statcord": "^2.1.4",
"@kaname-png/plugin-subcommands-advanced": "^2.1.3",
"@napi-rs/canvas": "^0.1.29",
"@prisma/client": "^4.3.1",
"@sapphire/decorators": "^5.0.0",
"@sapphire/discord.js-utilities": "^5.1.2",
"@sapphire/fetch": "^2.4.1",
"@sapphire/framework": "^3.2.0",
"@sapphire/plugin-editable-commands": "^2.0.1",
"@sapphire/plugin-i18next": "^3.1.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.0.2",
"@skyra/start-banner": "^1.0.2",
"diff": "^5.1.0",
"discord.js": "13.11.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@sapphire/eslint-config": "^4.3.8",
"@sapphire/prettier-config": "^1.4.4",
"@sapphire/ts-config": "^3.3.4",
"@swc/core": "^1.3.1",
"@types/diff": "^5.0.2",
"@types/ms": "^0.7.31",
"@types/node": "^18.7.16",
"@types/prettier": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"commitlint": "^17.1.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"prisma": "^4.3.1",
"tsup": "^6.2.3",
"typescript": "^4.8.3"
},
"imports": {
"#utils/*": "./dist/lib/utils/*.js",
"#utils/function": "./dist/lib/utils/function/index.js",
"#utils/commons": "./dist/lib/utils/commons/index.js",
"#utils/sanitizer": "./dist/lib/utils/sanitizer/index.js",
"#utils/api": "./dist/lib/utils/api/index.js",
"#lib/*": "./dist/lib/*.js",
"#lib/i18n": "./dist/lib/i18n/index.js",
"#lib/structures": "./dist/lib/structures/index.js",
"#lib/structures/colors": "./dist/lib/structures/colors/index.js",
"#lib/types": "./dist/lib/types/index.js",
"#root/*": "./dist/*.js"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": [
"eslint --fix --ext mjs,js,ts",
"prettier --write --loglevel=warn"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.6"
},
"prettier": "@sapphire/prettier-config"
}