-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.18 KB
/
package.json
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
54
55
{
"name": "strawbean",
"version": "1.0.0",
"description": "Discord reminder bot",
"main": "build/index.js",
"type": "module",
"engines": {
"node": "20.x"
},
"scripts": {
"test": "ava --node-arguments='--import=tsx'",
"start": "node build/index.js",
"register:commands": "node build/slash/register.js",
"build": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaddyUnderStars/strawbean-ts.git"
},
"author": "Madeline Carlier",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/MaddyUnderStars/strawbean-ts/issues"
},
"homepage": "https://github.com/MaddyUnderStars/strawbean-ts#readme",
"dependencies": {
"@discordjs/rest": "^1.3.0",
"discord.js": "^13.7.0",
"dotenv": "^16.0.1",
"mongodb": "^6.3.0",
"pretty-ms": "^7.0.1"
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@types/node": "^17.0.38",
"ava": "^5.3.1",
"discord-api-types": "^0.33.2",
"flakeid": "^1.0.0",
"mongodb-memory-server": "^9.1.6",
"tsx": "^3.14.0",
"typescript": "^4.7.2"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "build/"
},
"compile": "tsc"
},
"files": [
"test/**/*",
"!test/lib/**/*"
]
}
}