paimon/package.json

38 lines
968 B
JSON

{
"name": "paimon",
"version": "1.0.0",
"description": "simple genshin stats bot",
"main": "dist/index.js",
"repository": "https://git.velvox.dev/velvox/paimon",
"author": "Riley Smith <riley@rileysmith.me>",
"license": "MIT",
"_moduleAliases": {
"@util": "dist/util",
"@ext": "dist/ext",
"@commands": "dist/commands"
},
"scripts": {
"dev": "cross-env NODE_ENV=dev ts-node -r tsconfig-paths/register src/index.ts",
"start": "cross-env NODE_ENV=prod node dist/index.js",
"build": "node build.js",
"type-check": "tsc"
},
"dependencies": {
"@sapphire/framework": "^3.0.0-next.5f07004.0",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"module-alias": "^2.2.2"
},
"devDependencies": {
"@types/node": "^17.0.23",
"cross-env": "^7.0.3",
"esbuild": "^0.14.36",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
},
"volta": {
"node": "17.9.0"
}
}