-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@bikesky/bsky-community-bot",
"version": "0.4.5",
"license": "MIT",
"description": "A Typescript package for running a community bot that people can send commands to by mentioning it in a Bluesky post.",
"keywords": [
"bluesky",
"bot",
"atproto"
],
"bugs": {
"url": "https://github.com/bikesky-social/bsky-community-bot/issues"
},
"homepage": "https://github.com/bikesky-social/bsky-community-bot",
"author": {
"name": "Derek van Vliet",
"url": "https://linktr.ee/derekvanvliet"
},
"repository": "github:bikesky-social/bsky-community-bot",
"publishConfig": {
"access": "public"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/bikesky-social"
},
{
"type": "opencollective",
"url": "https://opencollective.com/bikesky"
}
],
"module": "main.ts",
"type": "module",
"exports": {
".": "./src/BlueskyCommunityBot.ts",
"./commands/*": "./src/commands/*.ts"
},
"files": [
"src",
"fonts",
"locales",
"views",
"package.json"
],
"scripts": {
"dev": "bun --watch --hot main.ts --inspect",
"build": "bun install",
"start": "bun main.ts",
"lexgen": "lex gen-server ./src/lexicon ./lexicons/*",
"test": "bun test"
},
"devDependencies": {
"@atproto/lex-cli": "^0.7.2",
"@types/array-equal": "^1.0.2",
"@types/bun": "^1.2.9",
"@types/express": "^5.0.1",
"@types/node-canvas-text": "^1.0.3",
"@types/valid-url": "^1.0.7"
},
"peerDependencies": {
"typescript": "^5.8.2"
},
"dependencies": {
"@atproto/api": "^0.14.22",
"@atproto/lexicon": "^0.4.10",
"@skyware/bot": "^0.3.11",
"array-equal": "^1.0.2",
"ejs": "^3.1.10",
"express": "^4.21.2",
"i18next": "^24.2.3",
"i18next-fs-backend": "^2.6.0",
"image-size": "^2.0.2",
"playwright": "^1.51.1",
"valid-url": "^1.0.9"
}
}