generated from KeiryoJS/typescript-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "@keiryo/project",
"version": "1.0.0",
"description": "A project in the keiryo family!",
"main": "dist/index.js",
"repository": "git@github.com:KeiryoJS/typescript-project.git",
"author": "keiryo team",
"license": "Apache-2.0",
"private": false,
"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"
],
"devDependencies": {
"@ava/typescript": "2.0.0",
"@keiryo/eslint-config": "^1.0.1",
"@types/node": "16.9.6",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "4.31.2",
"@typescript-eslint/parser": "4.31.2",
"ava": "3.15.0",
"eslint": "7.32.0",
"tiny-typed-emitter": "^2.1.0",
"typescript": "4.4.3"
},
"dependencies": {
"@keiryo/common": "^1.0.2",
"@keiryo/rest": "^1.0.1",
"discord-api-types": "^0.23.1",
"tslib": "^2.3.1",
"ws": "^8.2.2"
}
}