-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "someone",
"version": "4.0.0",
"description": "Someone bot for Discord. Brings back Discord's 2018 April Fools joke.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dbsetup": "npx prisma generate",
"start": "npx ts-node -T src/index.ts",
"setup": "npm i && cp .env.example .env && npx prisma migrate deploy && npx prisma generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ApocalypseCalculator/Someone"
},
"author": "ApocalypseCalculator",
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://github.com/ApocalypseCalculator/Someone/issues"
},
"homepage": "https://github.com/ApocalypseCalculator/Someone/blob/master/README.md",
"dependencies": {
"@prisma/adapter-better-sqlite3": "^7.0.0",
"@prisma/client": "^7.0.0",
"discord.js": "^14.25.1",
"dotenv": "^17.2.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"prisma": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}