-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"name": "telepathy",
"version": "1.0.0",
"description": "A Discord app for messaging subsets of users",
"main": "telepathy.js",
"scripts": {
"start": "ts-node src/telepathy.ts",
"setupdb": "ts-node scripts/setupdb.ts",
"exportdb": "ts-node scripts/exportdb.ts",
"importdb": "ts-node scripts/importdb.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lvoytek/telepathy.git"
},
"author": "Lena Voytek",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/lvoytek/telepathy/issues"
},
"homepage": "https://github.com/lvoytek/telepathy#readme",
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"printWidth": 120,
"bracketSameLine": true
},
"dependencies": {
"discord.js": "^13.8.0",
"dotenv": "^16.0.1",
"mysql2": "^2.3.3"
},
"devDependencies": {
"@types/mysql": "^2.15.21",
"@types/node": "^17.0.36",
"prettier": "2.6.2",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}