cath/package.json

46 lines
1.4 KiB
JSON
Raw Normal View History

2021-09-08 22:19:10 +02:00
{
2021-09-13 18:12:45 +02:00
"name": "cath",
2021-10-01 14:07:46 +02:00
"version": "1.3.6",
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": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon .",
2021-09-13 13:25:00 +02:00
"build": "tsc",
2021-09-08 22:19:10 +02:00
"start": "node .",
2021-09-19 15:41:55 +02:00
"docs": "npx typedoc src/index.ts",
2021-09-08 22:19:10 +02:00
"node-update": "npm i --save-dev node@16 && npm config set prefix=$(pwd)/node_modules/node && export PATH=$(pwd)/node_modules/node/bin:$PATH",
"node-clean": "rm -rf node_modules && rm package-lock.json && npm cache clear --force && npm cache clean --force && npm i",
"node-update-then-clean": "npm run node-update && npm run node-clean-cache",
"canvas": "npm uninstall canvas && npm i canvas",
"all": "npm run node-update && npm run node-clean && npm uninstall canvas && npm i canvas && node ."
},
"repository": {
"type": "git",
2021-09-14 23:48:48 +02:00
"url": "git+https://github.com/night0721/cath.git"
2021-09-08 22:19:10 +02:00
},
"bugs": {
2021-09-14 23:48:48 +02:00
"url": "https://github.com/night0721/cath/issues"
2021-09-08 22:19:10 +02:00
},
2021-09-14 23:48:48 +02:00
"homepage": "https://github.com/night0721/cath#readme",
2021-09-08 22:19:10 +02:00
"keywords": [
"cath",
"cath.exe",
"cat",
"api",
"discord",
"codm"
],
"author": "Ń1ght#0001",
2021-09-30 00:46:54 +02:00
"license": "CC-BY-NC-SA-4.0",
2021-09-08 22:19:10 +02:00
"dependencies": {
"axios": "^0.21.4",
2021-09-19 15:31:16 +02:00
"discord.js": "^13.1.0",
"typedoc": "^0.22.4"
2021-09-13 13:25:00 +02:00
},
"devDependencies": {
"typescript": "^4.4.3"
2021-09-08 22:19:10 +02:00
}
}