-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "evangeline",
"type": "module",
"version": "1.2.0",
"description": "An API wrapper for Eludris.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "tsc --outDir ./dist",
"docs": "typedoc --options ./typedoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eludris-community/evangeline.git"
},
"homepage": "https://evangeline.pages.dev",
"bugs": {
"url": "https://github.com/eludris-community/evangeline/issues"
},
"author": "Sham <thesham@protonmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@mxssfd/typedoc-theme": "^1.0.3",
"@types/node": "^18.11.9",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
},
"dependencies": {
"axios": "^1.2.3",
"eludris-api-types": "^0.1.2",
"ws": "^8.11.0"
}
}