-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "tick",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"clean": "del /s /q build",
"build": "tsc --build",
"start": "npm run clean && npm run build && node build/index.js",
"startNoClean": "npm run build && node build/index.js",
"devStart": "npm run clean && npm run build && node build/index.js --development",
"devstartNoClean": "npm run build && node build/index.js --development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghostydevelopment/Ghosty.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ghostydevelopment/Ghosty/issues"
},
"homepage": "https://github.com/ghostydevelopment/Ghosty#readme",
"description": "",
"dependencies": {
"@types/ms": "^0.7.34",
"@types/uuid": "^10.0.0",
"crypto": "^1.0.1",
"discord-html-transcripts": "^3.2.0",
"discord.js": "^14.16.3",
"glob": "^11.0.0",
"mongoose": "^8.7.1",
"ms": "^2.1.3",
"os": "^0.1.2",
"uuid": "^10.0.0"
}
}