-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
39 lines (39 loc) · 842 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
{
"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",
"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",
"zod": "^3.23.8"
}
}