forked from stoatchat/javascript-client-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 853 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 853 Bytes
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
{
"name": "revolt-api",
"version": "0.8.3",
"description": "Revolt API Library",
"main": "dist/index.js",
"module": "esm/index.js",
"homepage": "https://developers.revolt.chat",
"repository": "https://github.com/revoltchat/api.git",
"author": "Paul Makles <insrt.uk>",
"license": "MIT",
"scripts": {
"build": "REWRITE_ANYOF=1 oapilib && tsc && tsc -p tsconfig.esm.json",
"prepublish": "in-publish && yarn build || echo Skipping build."
},
"devDependencies": {
"@insertish/oapi": "0.2.0",
"@types/lodash.defaultsdeep": "^4.6.6",
"in-publish": "^2.0.1",
"openapi-typescript": "^5.2.0",
"typescript": "^4.6.2"
},
"dependencies": {
"axios": "^0.26.1",
"lodash.defaultsdeep": "^4.6.1"
},
"files": [
"src",
"dist",
"esm",
"OpenAPI.json",
"LICENSE",
"README.md"
]
}