-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "fedialgo",
"version": "0.0.2",
"description": "Fedialgo is a package for sorting Mastodon Posts in your timeline according to a user controlled algorithm",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"lint": "eslint ./src --fix"
},
"keywords": [
"Algorithm",
"Mastodon",
"Fediverse",
"Home"
],
"author": "pkreissel",
"license": "ISC",
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.6.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.1.0",
"@types/semver": "^7.5.0",
"@types/ws": "^8.5.4",
"dotenv": "^16.3.1",
"eslint": "^9.6.0",
"eslint-plugin-react": "^7.34.3",
"globals": "^15.8.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"typescript-eslint": "^7.15.0",
"util": "^0.12.5"
},
"overrides": {
"eslint": "^9.6.0"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.18.1",
"axios": "^1.7.2",
"masto": "^6.1.0"
}
}