-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "gooselique-sapphire",
"version": "1.0.0",
"main": "dist/index.js",
"author": "@sapphire",
"license": "UNLICENSE",
"type": "commonjs",
"dependencies": {
"@sapphire/decorators": "^6.0.4",
"@sapphire/discord.js-utilities": "7.1.6",
"@sapphire/fetch": "^3.0.2",
"@sapphire/framework": "^5.0.7",
"@sapphire/stopwatch": "^1.5.2",
"@sapphire/time-utilities": "^1.7.12",
"@sapphire/utilities": "^3.15.3",
"@skyra/env-utilities": "^1.3.0",
"bufferutil": "^4.0.8",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"lodash-es": "^4.17.21",
"lowdb": "^7.0.1",
"openai": "^4.47.1",
"pino": "^9.1.0",
"utf-8-validate": "^6.0.4"
},
"devDependencies": {
"@sapphire/cli": "^1.9.3",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.5",
"@types/ws": "^8.5.10",
"husky": "^9.0.11",
"lint-staged": "^15.2.4",
"pino-pretty": "^11.0.0",
"prettier": "^3.2.4",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"scripts": {
"sapphire": "sapphire",
"generate": "sapphire generate",
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "pnpm run build && pnpm run start",
"watch:start": "tsc-watch --onSuccess \"pnpm run start\"",
"format": "prettier --write \"src/\"",
"prepare": "husky"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "prettier --write"
},
"packageManager": "pnpm@8.15.6+sha512.77b89e9be77a2b06ad8f403a19cae5e22976f61023f98ad323d5c30194958ebc02ee0a6ae5d13ee454f6134e4e8caf29a05f0b1a0e1d2b17bca6b6a1f1159f86"
}