-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.14 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.14 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
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
{
"name": "hypixel.ts",
"version": "2.1.0",
"description": "A simple, easy to use wrapper for Hypixel API.",
"homepage": "https://hypixel.js.org/",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/cjs/index.d.ts",
"author": "FC5570",
"license": "MIT",
"exports": {
"require": {
"default": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts"
},
"import": {
"default": "./dist/esm/index.mjs",
"types": "./dist/esm/index.d.mts"
}
},
"scripts": {
"build": "yarn tsup",
"lint": "yarn eslint . --fix",
"format": "yarn prettier --write .",
"test": "yarn vitest",
"coverage": "yarn test --coverage",
"prepublishOnly": "yarn build",
"bump": "yarn cliff-jumper",
"release": "git push && git push --tags && npm publish"
},
"dependencies": {
"@sapphire/async-queue": "^1.5.5"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@favware/cliff-jumper": "^3.0.3",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^20.17.19",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^1.6.1",
"esbuild-plugin-file-path-extensions": "^2.1.4",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"git-cliff": "^2.8.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"tsup": "^8.3.6",
"typedoc": "^0.25.13",
"typescript": "5.4.3",
"vitest": "^1.6.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FC5570/hypixel.ts.git"
},
"bugs": {
"url": "https://github.com/FC5570/hypixel.ts/issues"
},
"keywords": [
"hypixel",
"hypixel-api",
"hypixel-api-wrapper",
"hypixel.js",
"hypixel.ts"
],
"files": [
"dist/",
"CHANGELOG.md",
"README.md"
],
"lint-staged": {
"*.{ts,js}": "yarn lint"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "@sapphire/eslint-config"
},
"packageManager": "yarn@4.6.0",
"prettier": "@sapphire/prettier-config"
}