cath/package.json

43 lines
904 B
JSON
Raw Normal View History

2021-09-08 22:19:10 +02:00
{
2021-09-13 18:12:45 +02:00
"name": "cath",
2023-11-23 21:17:43 +01:00
"version": "2.0.0",
2021-09-08 22:19:10 +02:00
"description": "A powerful package that can interact with Cath API",
2021-09-13 13:25:00 +02:00
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
2021-09-08 22:19:10 +02:00
"scripts": {
2021-09-13 13:25:00 +02:00
"build": "tsc",
2021-09-08 22:19:10 +02:00
"start": "node .",
2021-10-15 11:24:59 +02:00
"docs": "npx typedoc src/index.ts"
2021-09-08 22:19:10 +02:00
},
"repository": {
"type": "git",
2023-11-23 20:26:34 +01:00
"url": "git+https://codeberg.org/night0721/cath.git"
2021-09-08 22:19:10 +02:00
},
"bugs": {
2023-11-23 20:26:34 +01:00
"url": "https://codeberg.org/night0721/cath/issues"
2021-09-08 22:19:10 +02:00
},
2021-10-09 02:50:42 +02:00
"homepage": "https://cath.js.org",
2021-09-08 22:19:10 +02:00
"keywords": [
"cath",
"cath.exe",
"cat",
"api",
"discord",
"codm"
],
2023-11-23 20:26:34 +01:00
"author": "night0721",
"license": "GPL-3.0",
2021-10-15 11:24:59 +02:00
"funding": {
"type": "individual",
"url": "https://ko-fi.com/cathteam"
},
2021-09-08 22:19:10 +02:00
"dependencies": {
2022-01-26 22:46:04 +01:00
"axios": "^0.25.0",
"discord.js": "^13.6.0",
"mongoose": "^5.13.10",
"typedoc": "^0.22.11"
2021-09-13 13:25:00 +02:00
},
"devDependencies": {
"typescript": "^4.4.3"
2021-09-08 22:19:10 +02:00
}
2023-11-23 20:26:34 +01:00
}