generated from PixelPizza/bot-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.43 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
84
85
86
87
88
{
"name": "@pixelpizza/serberbot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist"
],
"imports": {
"#lib": "./dist/lib/index.js"
},
"scripts": {
"update": "yarn upgrade-interactive",
"test": "vitest run",
"test:watch": "vitest",
"build": "tsup",
"lint": "eslint src test --ext mjs,js,ts --fix",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"typecheck": "tsc -p tsconfig.eslint.json",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"postinstall": "husky install",
"prepack": "rollup-type-bundler -v -e node:url node:events && pinst --disable",
"postpack": "pinst --enable",
"start": "yarn build && node .",
"dev": "cross-env NODE_ENV=development yarn start",
"prod": "cross-env NODE_ENV=production yarn start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheRavenousCorporate/bot-template.git"
},
"keywords": [],
"author": "@theravenouscorporate",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheRavenousCorporate/bot-template/issues"
},
"homepage": "https://github.com/TheRavenousCorporate/bot-template#readme",
"dependencies": {
"@kaname-png/plugin-env": "^1.1.7",
"@sapphire/decorators": "^6.0.2",
"@sapphire/discord.js-utilities": "^7.0.1",
"@sapphire/framework": "^4.5.1",
"@sapphire/plugin-logger": "^3.0.5",
"@sapphire/plugin-subcommands": "^4.0.2",
"discord-api-types": "^0.37.51",
"discord.js": "14.x",
"dotenv-cra": "^3.0.3",
"googlethis": "1.2.7"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@favware/cliff-jumper": "^2.1.1",
"@favware/rollup-type-bundler": "^2.0.0",
"@sapphire/eslint-config": "^5.0.0",
"@sapphire/ts-config": "^4.0.1",
"@types/eslint": "^8.44.0",
"@types/node": "^18.17.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitest/coverage-v8": "^0.33.0",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"pinst": "^3.0.0",
"prettier": "^3.0.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"resolutions": {
"dotenv-cra/dotenv": "^16.3.1"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@3.6.1"
}