-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "dicloud",
"version": "3.0.0",
"main": "out/boot.js",
"license": "MIT",
"dependencies": {
"@noble/ciphers": "^1.0.0",
"@ungap/structured-clone": "^1.2.0",
"app-root-path": "^3.1.0",
"archiver": "^7.0.1",
"axios": "^1.3.6",
"axios-retry": "^4.5.0",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"express": "^4.21.2",
"memfs": "^4.2.0",
"mime-types": "^3.0.0",
"object-hash": "^3.0.0",
"webdav-server": "^2.6.2"
},
"engines": {
"node": ">=16",
"yarn": ">=1.22.0"
},
"scripts": {
"start": "node --no-warnings out/bootloader.js",
"boot": "tsc -p tsconfig.json && node --no-warnings out/bootloader.js",
"build": "tsc -p tsconfig.json",
"test": "yarn build && node --no-warnings out/tests/raw.spec.js",
"del": "del /s /q out"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/express": "^5.0.0",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.16.1",
"@types/object-hash": "^3.0.3",
"@types/ungap__structured-clone": "^0.3.0",
"typescript": "^5.0.4",
"uvu": "^0.5.6",
"yarn-upgrade-all": "^0.7.2"
}
}