generated from KeiryoJS/typescript-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "@keiryo/rest",
"version": "1.0.0",
"description": "library for interacting with Discord's REST api",
"main": "dist/index.js",
"repository": "[email protected]:KeiryoJS/rest.git",
"author": "keiryo team",
"license": "Apache-2.0",
"private": false,
"homepage": "https://github.com/KeiryoJS/rest#README.md",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rm -rf dist && tsc --removeComments",
"lint": "eslint src --ext .ts",
"lint:fix": "yarn lint --fix",
"test": "ava"
},
"files": [
"!*.test.*",
"!*.spec.*",
"dist/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=14"
},
"devDependencies": {
"@ava/typescript": "2.0.0",
"@keiryo/eslint-config": "^1.0.1",
"@types/node": "v14",
"@typescript-eslint/eslint-plugin": "4.31.2",
"@typescript-eslint/parser": "4.31.2",
"ava": "3.15.0",
"eslint": "7.32.0",
"form-data": "^4.0.0",
"typescript": "4.4.3"
},
"dependencies": {
"@keiryo/common": "^1.0.2",
"abort-controller": "^3.0.0",
"discord-api-types": "^0.23.1",
"tiny-typed-emitter": "^2.1.0",
"undici": "^4.7.0"
}
}