forked from pkreissel/fedialgo
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.14 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.14 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
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
{
"name": "fedialgo",
"version": "1.2.39",
"description": "Fedialgo is a package for sorting Mastodon Posts in your timeline according to a user controlled algorithm",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"docs": "npm run build && jsdoc -c jsdoc.config.json --readme README.md",
"test": "jest --coverage",
"testTS": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint ./src"
},
"dependencies": {
"async-mutex": "^0.5.0",
"axios": "^1.12.2",
"blueimp-md5": "^2.19.0",
"buffer": "^6.0.3",
"change-case": "^5.4.4",
"class-transformer": "^0.5.1",
"html-entities": "^2.6.0",
"languagedetect": "^2.0.0",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"masto": "^7.10.0",
"reflect-metadata": "^0.2.2",
"regexp.escape": "^2.0.1",
"tinyld": "^1.3.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.27.1",
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.6.0",
"@react-native-async-storage/async-storage": "^2.2.0",
"@types/blueimp-md5": "^2.18.2",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.17",
"@types/node": "^20.1.0",
"@types/regexp.escape": "^2.0.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",
"jsdoc": "^4.0.4",
"jsdoc-plugin-typescript": "^3.2.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"typescript-eslint": "^7.15.0",
"util": "^0.12.5"
},
"overrides": {
"eslint": "^9.6.0"
},
"sideEffects": false,
"keywords": [
"Algorithm",
"Mastodon",
"Fediverse",
"Home"
],
"author": "michelcryptadamus",
"license": "GPL-3.0-only"
}