jillo-bot/package.json

33 lines
831 B
JSON
Raw Normal View History

2022-06-08 01:28:20 +02:00
{
2022-07-19 20:48:02 +02:00
"name": "jillo",
2022-06-08 01:28:20 +02:00
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
2023-10-29 10:45:38 +01:00
"start": "tsc && node deploy-commands.cjs && node dist/index.js",
"dev": "tsc && node dist/index.js",
2022-06-08 02:57:15 +02:00
"build": "tsc",
"deploy-commands": "tsc && node deploy-commands.cjs"
2022-06-08 01:28:20 +02:00
},
"author": "oatmealine",
"license": "AGPL-3.0",
"dependencies": {
2023-10-29 10:45:38 +01:00
"d3-array": "^2.12.1",
2023-10-29 12:20:49 +01:00
"discord.js": "^14.13.0",
"got": "^11.8.6",
"knex": "^3.0.1",
2022-07-16 17:33:30 +02:00
"parse-color": "^1.0.0",
"random-seed": "^0.3.0",
"sqlite3": "^5.1.6"
2022-06-08 02:57:15 +02:00
},
"devDependencies": {
2023-10-29 10:22:23 +01:00
"@types/d3-array": "^3.0.9",
2023-10-29 12:20:49 +01:00
"@types/parse-color": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"discord-api-types": "^0.37.50",
"eslint": "^8.52.0",
"typescript": "5.2.2"
2022-06-08 01:28:20 +02:00
}
}