generated from philnash/bsky-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 977 Bytes
/
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
{
"name": "bsky-bot",
"version": "1.0.0",
"description": "A template repo for building Bluesky bots",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/",
"build": "tsc",
"watch": "tsc --watch",
"start": "node .",
"dev": "nodenv ."
},
"keywords": [
"bsky",
"bluesky",
"atproto",
"bot"
],
"author": {
"name": "Phil Nash",
"email": "[email protected]",
"url": "https://philna.sh/"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^22.9.3",
"@types/xml2js": "^0.4.14",
"@types/xmldom": "^0.1.34",
"eslint": "^9.15.0",
"node-env-run": "^4.0.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0"
},
"dependencies": {
"@atproto/api": "^0.13.18",
"fetch": "^1.1.0",
"xml2js": "^0.6.2",
"xmldom": "^0.6.0",
"zod": "^3.23.8"
}
}