-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.42 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
{
"author": "HunteRoi <me@tinaeldevresse.eu> (https://tinaeldevresse.eu/)",
"bugs": {
"url": "https://github.com/hunteroi/discord-server-generator/issues"
},
"description": "A framework to generate Discord guild categories, channels and roles, built with DiscordJS",
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@types/node": "^20.14.6",
"@types/ws": "^8.5.10",
"discord-sync-commands": "^0.3.0",
"discord.js": "^14.15.3",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=20.x"
},
"files": [
"lib/**/*"
],
"funding": "https://github.com/sponsors/hunteroi",
"homepage": "https://github.com/hunteroi/discord-server-generator#readme",
"keywords": [
"discordjs",
"guild-generator",
"server-generator",
"template-discord"
],
"license": "MIT",
"main": "lib/index.js",
"name": "@hunteroi/discord-server-generator",
"peerDependencies": {
"discord.js": "14.x"
},
"repository": "git://github.com/hunteroi/discord-server-generator.git",
"scripts": {
"build": "tsc",
"build:docs": "typedoc",
"lint": "biome check --apply ./src",
"prepublish": "yarn lint && yarn build && yarn build:docs",
"start": "yarn build && tsc ./examples/index.ts --target esnext --module nodenext --moduleResolution nodenext && node ./examples/index.js"
},
"type": "module",
"version": "2.1.0"
}