-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.5 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "estradiol",
"version": "0.1.0",
"description": "Your queer bot for Discord!",
"main": "src/app.ts",
"scripts": {
"start": "node dist/Bot.js",
"build": "tsc --build",
"clean": "tsc --clean",
"dev": "nodemon --watch \"src/**\" --ext \"ts,json,ejs\" --exec \"npm run build && npm run babel && npm start\"",
"format:check": "npx prettier --check .",
"format:write": "npx prettier --write .",
"lint": "eslint .",
"babel": "babel dist/** --out-dir dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sech1p/Estradiol.git"
},
"keywords": [
"discord",
"bot",
"lgbt",
"queer"
],
"author": "Eliza \"sech1p\" Semeniuk <sech1p@disroot.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sech1p/Estradiol/issues"
},
"homepage": "https://github.com/sech1p/Estradiol#readme",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/node": "^20.12.12",
"@types/node-os-utils": "^1.3.4",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint-config-typescript": "^3.0.0",
"nodemon": "^3.1.0",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"eris": "^0.17.2",
"glob-promise": "^6.0.5",
"moment": "^2.30.1",
"node-os-utils": "^1.3.7"
}
}