-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"name": "tinystarfieldsclone",
"version": "1.0.0",
"description": "Bluesky bot that draws the stars",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/flubber2077/tinystarfieldsclone"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "prettier . --write --cache && eslint src/ --cache",
"build": "bun build.ts",
"watch": "tsc --watch",
"start": "bun dist/index.js",
"dev": "bun run build && bun run start"
},
"keywords": [
"bsky",
"bluesky",
"bot"
],
"author": {
"name": "Dylan Jordan"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/bun": "^1.1.13",
"bun": "^1.1.34",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
},
"dependencies": {
"@atproto/api": "^0.13.16",
"croner": "^9.0.0",
"dayjs": "^1.11.13"
}
}