-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 948 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"dependencies": {
"better-sqlite3": "^11.10.0",
"discord.js": "14.16",
"source-map-support": "^0.5.21"
},
"scripts": {
"check": "echo \"Checking for errors ...\" && tsc --noEmit",
"build": "echo \"Checking for errors ...\" && tsc --noEmit && echo \"Deleting old data ...\" && rm -rf build && echo \"Compiling scripts ...\" && tsc -b",
"check-go": "echo \"Checking for errors ...\" && tsgo --noEmit",
"build-go": "echo \"Checking for errors ...\" && tsgo --noEmit && echo \"Deleting old data ...\" && rm -rf build && echo \"Compiling scripts ...\" && tsgo -b",
"start": "node build/index.js",
"linecount": "find . -type f -name '*.ts' -not -path './node_modules/*' -exec wc -l {} + | sort -n -r | head -n 10",
"test": "jest --config jest.config.js"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/better-sqlite3": "^7.6.13",
"@types/jest": "^30.0.0",
"@types/node": "^22.13.1",
"jest": "^30.2.0"
}
}