-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1020 Bytes
/
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
{
"name": "@lavacoffee/types",
"version": "0.1.0",
"description": "A set of lavalink types",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"test": "npm run lint",
"build": "rimraf dist && tsc",
"lint": "eslint --ext .ts src",
"docs": "typedoc src/index.ts --excludePrivate --excludeInternal --excludeExternals"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lavacoffee/types.git"
},
"keywords": [
"lavalink",
"lavalink-types",
"lavacoffee",
"typescript"
],
"author": "azusfin",
"license": "MIT",
"bugs": {
"url": "https://github.com/lavacoffee/types/issues"
},
"homepage": "https://github.com/lavacoffee/types#readme",
"devDependencies": {
"@hazmi35/eslint-config": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"rimraf": "^3.0.2",
"typedoc": "^0.22.11",
"typescript": "^4.5.4"
}
}