-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 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
{
"name": "banshare",
"version": "1.0.0",
"main": "dist/index.js",
"author": "@sapphire",
"license": "UNLICENSE",
"type": "commonjs",
"dependencies": {
"@sapphire/decorators": "^6.1.1",
"@sapphire/discord.js-utilities": "7.3.2",
"@sapphire/framework": "^5.3.2",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/utilities": "^3.18.1",
"@skyra/env-utilities": "^1.3.0",
"better-sqlite3": "^12.5.0",
"colorette": "^2.0.20",
"discord.js": "^14.17.3"
},
"devDependencies": {
"@sapphire/cli": "^1.9.3",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.10.7",
"@types/ws": "^8.5.13",
"@vitest/coverage-v8": "^4.1.2",
"prettier": "^3.4.2",
"tsc-watch": "^6.3.0",
"typescript": "~5.4.5",
"vitest": "^4.1.2"
},
"scripts": {
"sapphire": "sapphire",
"generate": "sapphire generate",
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "npm run build && npm run start",
"watch:start": "tsc-watch --onSuccess \"npm run start\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write \"src/\""
},
"prettier": "@sapphire/prettier-config"
}