This repository was archived by the owner on Jun 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.42 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@rhidium/core",
"version": "2.2.0",
"description": "Quickly and easily create powerful Discord bots using a powerful all-in-one framework.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean:docs": "rimraf ./docs",
"clean:dist": "rimraf ./dist",
"clean:modules": "rimraf ./node_modules",
"clean": "npm run clean:dist && npm run clean:modules && npm run clean:docs",
"prebuild": "npm run clean:dist",
"build": "tsup",
"build:watch": "tsup --watch",
"lint": "eslint 'src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx,js,jsx}'",
"docs": "npx typedoc",
"docs:watch": "npx typedoc --watch",
"dev": "npm run start:dev",
"start:dev": "ts-node-dev --respawn --notify --transpile-only src/index.ts --NODE_ENV=development",
"commit": "cz",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhidium/core.git"
},
"author": {
"name": "Richard Hillebrand (Mirasaki)"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rhidium/core/issues"
},
"homepage": "https://github.com/rhidium/core#readme",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@swc/core": "^1.4.13",
"@types/common-tags": "^1.8.4",
"@types/fs-extra": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.53.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"ts-node-dev": "^2.0.0",
"tsup": "^8.0.2",
"typedoc": "^0.25.13",
"typedoc-plugin-djs-links": "^2.2.1",
"typescript": "^5.4.5"
},
"dependencies": {
"@discordjs/rest": "^2.3.0",
"@discordjs/ws": "^1.1.0",
"colors": "^1.4.0",
"common-tags": "^1.8.2",
"cron": "^3.1.7",
"deep-object-diff": "^1.1.9",
"discord-hybrid-sharding": "^2.2.0",
"discord.js": "^14.15.2",
"fs-extra": "^11.2.0",
"i18next": "23.11.1",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"eslint --fix"
]
},
"files": [
"dist",
"locales"
]
}