-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "generator-discord",
"displayName": "Generator-Discord",
"version": "1.3.19",
"type": "module",
"exports": "./app/index.js",
"description": "Create a basic Discord-Bot, supporting many programming languages.",
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"yeoman-generator",
"discord.js",
"discord",
"discord bot"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "npm run build && vitest run",
"lint": "eslint src test --ext .ts",
"lint:fix": "eslint src test --ext .ts --fix",
"clean": "npx rimraf app && npx rimraf node_modules"
},
"files": [
"app",
"templates",
"src"
],
"types": "app/index.d.ts",
"author": "Emil Krebs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/emilkrebs/Generator-Discord.git"
},
"bugs": {
"url": "https://github.com/emilkrebs/Generator-Discord/issues"
},
"homepage": "https://github.com/emilkrebs/Generator-Discord",
"dependencies": {
"yeoman-generator": "^7.5.1"
},
"devDependencies": {
"dotenv": "^17.2.1",
"eslint": "^9.34.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0",
"vitest": "^3.2.4",
"yeoman-environment": "^4.4.3",
"yeoman-test": "^10.1.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.48.1"
}
}