generated from kirishima-ship/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "@kirishima/rest",
"author": {
"name": "KagChi"
},
"version": "0.2.7",
"license": "GPL-3.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"repository": {
"url": "https://github.com/kirishima-ship/rest"
},
"bugs": {
"url": "https://github.com/kirishima-ship/rest/issues"
},
"readme": "https://github.com/kirishima-ship/rest/blob/main/README.md",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"build": "rimraf dist && tsc && gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
"test": "jest",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write {src,tests}/**/*.ts"
},
"devDependencies": {
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@sapphire/eslint-config": "4.4.3",
"@sapphire/prettier-config": "1.4.5",
"@sapphire/ts-config": "3.3.4",
"@types/jest": "^28.1.8",
"eslint": "8.55.0",
"jest": "^28.1.3",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "4.9.5"
},
"prettier": "@sapphire/prettier-config",
"dependencies": {
"@kirishima/fetch": "^0.3.3",
"@sapphire/async-queue": "^1.5.0",
"gen-esm-wrapper": "^1.1.3",
"lavalink-api-types": "^1.1.5",
"tslib": "^2.6.2",
"undici": "^5.28.2"
}
}