-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.94 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "bluesky-aroace-feed",
"version": "0.2.2",
"description": "Multilingual Bluesky feed generator for ace/aro community content with smart filtering and language support",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node --no-warnings server.js",
"dev": "nodemon --no-warnings server.js",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"bluesky",
"atproto",
"asexual",
"aromantic",
"acespec",
"feed-generator",
"multilingual"
],
"author": "Ignacio de Miguel Díaz",
"email": "imigueldiaz@gmail.com",
"license": "MIT",
"dependencies": {
"@atproto/api": "latest",
"@atproto/lexicon": "latest",
"@atproto/repo": "latest",
"@atproto/syntax": "latest",
"better-sqlite3": "^11.7.0",
"compromise": "^14.10.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"stemmer": "^2.0.1"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^13.24.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imigueldiaz/bluesky-aroace-feed.git"
},
"bugs": {
"url": "https://github.com/imigueldiaz/bluesky-aroace-feed/issues"
},
"homepage": "https://github.com/imigueldiaz/bluesky-aroace-feed#readme"
}