generated from philnash/bsky-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1014 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": {
"@types/node": "^18.16.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-plugin-sonarjs": "^0.19.0",
"node-env-run": "^4.0.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@atproto/api": "^0.13.15",
"dotenv": "^16.4.5",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"sharp": "^0.33.5",
"zod": "^3.21.4"
}
}