cath/package.json

47 lines
1.4 KiB
JSON
Raw Normal View History

2021-09-08 22:19:10 +02:00
{
2021-09-13 13:25:00 +02:00
"name": "cath.js",
2021-09-08 22:19:10 +02:00
"version": "1.1.0",
"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 .",
"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",
"url": "git+https://github.com/CathTeam/cath.git"
},
"bugs": {
"url": "https://github.com/CathTeam/cath/issues"
},
"homepage": "https://github.com/CathTeam/cath#readme",
"keywords": [
"cath",
"cath.exe",
"cat",
"api",
"discord",
"codm"
],
"author": "Ń1ght#0001",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.21.4",
"discord.js": "^13.1.0"
2021-09-13 13:25:00 +02:00
},
"devDependencies": {
"@types/jsdom": "^16.2.13",
"ts-node": "^10.2.1",
"typedoc": "^0.21.9",
"typescript": "^4.4.3"
2021-09-08 22:19:10 +02:00
}
}