-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.01 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
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
{
"name": "create-discordjs-core-bot",
"version": "0.0.4",
"description": "A helper to simply create beautiful bots with @discordjs/core",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"bin": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"directories": {
"lib": "src",
"example": "template"
},
"files": [
"dist",
"template"
],
"scripts": {
"pretest": "npm run build",
"build": "tsup",
"lint": "eslint src --ext mjs,js,ts",
"lint:fix": "eslint src --ext mjs,js,ts --fix",
"format": "prettier --write **/*.{ts,js,json,yml,yaml}",
"prepack": "npm run build && npm run lint",
"prepare": "is-ci || husky install",
"release": "standard-version --preset angular"
},
"keywords": [
"discordjs",
"bot",
"core",
"template",
"create-bot",
"init-bot",
"discord-api"
],
"author": "Jaw0r3k",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/jaw0r3k/create-discordjs-core-bot.git"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-angular": "^15.0.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.6",
"@types/prompts": "^2.4.4",
"@types/validate-npm-package-name": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.5.0",
"eslint-config-marine": "^9.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"lint-staged": "^12.1.4",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"tsup": "^5.11.8",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=18.16.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.2.0",
"commander": "^10.0.1",
"prompts": "^2.4.2",
"validate-npm-package-name": "^5.0.0"
}
}