-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1007 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1007 Bytes
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": "pronoun-picker",
"version": "1.0.0",
"description": "Pronoun Jetstream Consumer and Labeler",
"type": "module",
"repository": "git@github.com:TheRipperoni/PronounPicker.git",
"author": "Ripperoni",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"build": "tsc",
"lint": "eslint .",
"format": "prettier --write .",
"test": "jest"
},
"dependencies": {
"@atproto/api": "^0.18.20",
"@skyware/jetstream": "^0.2.5",
"dotenv": "^17.2.2",
"multiformats": "^13.4.2",
"pino": "^9.9.4",
"sqlite3": "^5.1.7",
"ws": "^8.19.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^24.3.1",
"@types/sqlite3": "^5.1.0",
"@types/ws": "^8.18.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.54.0"
}
}