generated from aliceisjustplaying/labeler-starter-kit-bsky
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 KB
/
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": "zodiacsigns-bsky",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "npx tsx src/main.ts",
"dev": "npx tsx --watch src/main.ts",
"format": "bunx prettier --write .",
"lint": "bunx eslint .",
"lint:fix": "bunx eslint --fix .",
"set-posts": "npx tsx src/set-posts.ts",
"set-labels": "npx tsx src/set-labels.ts"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/better-sqlite3": "^7.6.11",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^22.8.4",
"@types/ws": "^8.5.12",
"eslint": "^9.13.0",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"dependencies": {
"@atproto/api": "^0.13.14",
"@skyware/bot": "^0.3.8",
"@skyware/jetstream": "^0.2.2",
"@skyware/labeler": "^0.2.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"prom-client": "^15.1.3"
}
}