generated from sapphiredev/sapphire-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 2.94 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@kaname-png/revoltx",
"version": "2.0.6",
"description": "RevoltX is a framework for creating Revolt bots.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "@kaname-png",
"license": "MIT",
"type": "module",
"scripts": {
"lint": "eslint src tests --ext ts --fix",
"format": "prettier --write {src,tests}/**/*.ts",
"docs": "typedoc",
"test": "jest",
"test:watch": "jest --watch",
"update": "yarn upgrade-interactive",
"build": "tsc -b src",
"clean": "tsc -b src --clean",
"watch": "tsc -b src -w",
"sversion": "standard-version --no-verify && npm publish && git push --follow-tags origin main",
"commit": "git-cz",
"cz": "git-cz",
"prepublishOnly": "rollup-type-bundler -v -e url events",
"prepare": "husky install .github/husky"
},
"dependencies": {
"@discordjs/collection": "^2.1.0",
"@favware/rollup-type-bundler": "^3.3.0",
"@sapphire/lexure": "^1.1.7",
"@sapphire/pieces": "^4.3.1",
"@sapphire/ratelimits": "^2.4.9",
"@sapphire/result": "2.6.6",
"@sapphire/utilities": "^3.16.2",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"tslib": "^2.6.3",
"tslog": "^4.9.3"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@favware/npm-deprecate": "^1.0.7",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"git-cz": "^4.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"pretty-quick": "^4.0.0",
"revolt.js": "6.0.20",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typedoc": "^0.26.1",
"typedoc-plugin-mdn-links": "^3.2.1",
"typescript": "^5.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaname-png/revoltx.git"
},
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"engines": {
"node": ">=v14.0.0",
"npm": ">=7.0.0"
},
"keywords": [
"@kaname-png/revoltx",
"revolt",
"bot",
"typescript",
"ts",
"yarn",
"sapphire"
],
"bugs": {
"url": "https://github.com/kaname-png/revoltx/issues"
},
"homepage": "https://github.com/kaname-png/revoltx",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"jest-environment-jsdom": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.1.3.tgz"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "[email protected]"
}