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
106 lines (106 loc) · 3.2 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.2 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@rhidium/template",
"version": "2.1.1",
"description": "A TypeScript Discord bot template that fully utilizes the Rhidium framework.",
"main": "dist/src/index.js",
"license": "ISC",
"scripts": {
"setup:linux": "pnpm install && cp .env.example .env && cp config/config.example.json config/config.json",
"setup:windows": "pnpm install && copy .env.example .env && copy config/config.example.json config/config.json",
"generate-schema": "npx ts-json-schema-generator --path 'src/config/*.ts' --type 'UserConfigOptions' --tsconfig tsconfig.json",
"update-schema": "node scripts/create-config-schema.mjs",
"preconfig-editor": "npm update-schema",
"config-editor": "node scripts/config-editor.mjs",
"setup:config": "npm i @rhidium/json-editor && npm run config-editor",
"clean:dist": "rimraf ./dist",
"clean:modules": "rimraf ./node_modules",
"clean": "npm run clean:dist && npm run clean:modules",
"prebuild": "npm run clean:dist",
"build": "tsc",
"build:watch": "tsc -w",
"dev": "npm run start:dev",
"prestart": "npm run build",
"start": "node --enable-source-maps dist/src/index.js --NODE_ENV=production",
"start:dev": "ts-node-dev --respawn --notify --transpile-only src/index.ts --NODE_ENV=development",
"pretest": "npm run build",
"test": "mocha dist/test/**/*.js",
"test:dev": "ts-mocha test/**/*.spec.ts -w --watch-files '**/*.ts'",
"lint": "eslint 'src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx,js,jsx}'",
"commit": "cz",
"prepare": "node .husky/install.mjs",
"typecheck": "tsc --noEmit",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev"
},
"keywords": [
"discord",
"template",
"bot-template",
"node",
"discordapp",
"typescript",
"rhidium",
"framework",
"discord.js"
],
"repository": {
"type": "git",
"url": "https://github.com/rhidium/template.git"
},
"bugs": {
"url": "https://github.com/rhidium/template/issues"
},
"homepage": "https://rhidium.xyz",
"dependencies": {
"@prisma/client": "^5.12.1",
"@rhidium/core": "^2.1.2",
"common-tags": "^1.8.2",
"discord-api-types": "^0.37.87",
"discord-hybrid-sharding": "^2.2.0",
"discord.js": "^14.15.3",
"i18next": "23.11.1",
"module-alias": "^2.2.3",
"tslib": "^2.6.2"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/common-tags": "^1.8.4",
"@types/express": "^4.17.21",
"@types/module-alias": "^2.0.4",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prisma": "^5.12.1",
"rimraf": "^5.0.5",
"ts-json-schema-generator": "^1.5.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"eslint --fix"
]
},
"engines": {
"node": ">=18",
"pnpm": ">=6"
},
"packageManager": "pnpm@9.1.4",
"author": {
"name": "Mirasaki (Richard Hillebrand)",
"email": "me@mirasaki.dev",
"url": "https://mirasaki.dev"
}
}