-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
49 lines (49 loc) · 1.83 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
{
"name": "chinokafuu",
"version": "0.0.1",
"private": true,
"description": "🐰 | An incredible bot which can help you in your daily routine in your guild whenever you need it.",
"author": "DanielaGC_ (https://github.com/DanielaGC)",
"license": "AGPL-3.0",
"repository": "https://github.com/RabbitHouseCorp/ChinoKafuu.git",
"scripts": {
"watchMode": "node ./framework/index.js watchMode",
"installPackage": "node ./framework/index.js --repository @chinokafuu/discord --no-ts --installPackage",
"upgradePackages": "node ./framework/index.js --no-ts --upgrade-packages",
"helpFramework": "node ./framework/index.js -h",
"test": "node ./framework/nodeTest.js --no-ts",
"lint": "node ./framework/nodeTest.js --no-ts --lint",
"start": "node ./framework/index.js --no-ts",
"dev": "node ./framework/index.js --dev --no-ts",
"dev:ts": "node ./framework/index.js --dev --no-ts",
"tracemMode": "node ./framework/index.js --dev --debug --trace",
"start:bun": "bun run ./framework/index.js",
"dev:bun": "bun run ./framework/index.js --dev",
"tracemMode:bun": "bun run ./framework/index.js --dev --debug --trace",
"postinstall": "node ./framework/index.js --repository @chinokafuu/discord --no-ts --installPackage"
},
"packageManager": "[email protected]",
"type": "module",
"dependencies": {
"chalk": "^5.4.1",
"dotenv": "^16.4.7",
"ws": "^8.18.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-syntax-import-assertions": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
}
}