-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 974 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 974 Bytes
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
{
"name": "craig-helperbot",
"version": "2.0.0",
"description": "Helper bot for Craig",
"type": "module",
"private": true,
"scripts": {
"start": "bun run src/index",
"dev": "bun run --watch src/index",
"sync": "bun run scripts/sync",
"format": "prettier --write \"src/**/*.{ts,js,json}\""
},
"repository": "https://github.com/CraigChat/helper",
"author": {
"name": "Snazzah",
"email": "me@snazzah.com",
"url": "https://snazzah.com/"
},
"funding": {
"url": "https://github.com/sponsors/Snazzah"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/CraigChat/helper/issues"
},
"homepage": "https://github.com/CraigChat/helper#readme",
"dependencies": {
"@projectdysnomia/dysnomia": "^0.2.3",
"common-tags": "^1.8.2",
"slash-create": "^6.4.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/common-tags": "^1.8.4",
"prettier": "^3.5.3",
"typescript": "^5"
}
}