forked from misskey-dev/summaly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "@misskey-dev/summaly",
"version": "5.1.0",
"description": "Get web page's summary",
"author": "syuilo <[email protected]>",
"license": "MIT",
"repository": "https://github.com/misskey-dev/summaly.git",
"bugs": "https://github.com/misskey-dev/summaly/issues",
"main": "./built/index.js",
"type": "module",
"types": "./built/index.d.ts",
"packageManager": "[email protected]",
"files": [
"built",
"LICENSE"
],
"scripts": {
"build": "tsc && tsc-alias",
"eslint": "eslint",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --silent=false --verbose false",
"serve": "fastify start ./built/index.js"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@misskey-dev/eslint-plugin": "^2.0.3",
"@swc/core": "^1.9.1",
"@swc/jest": "^0.2.37",
"@types/cheerio": "0.22.35",
"@types/debug": "4.1.12",
"@types/escape-regexp": "^0.0.3",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"debug": "^4.3.7",
"eslint": "^9.14.0",
"eslint-plugin-import": "^2.31.0",
"fastify": "^5.1.0",
"fastify-cli": "^7.0.1",
"jest": "^29.7.0",
"tsc-alias": "^1.8.10",
"typescript": "5.6.3"
},
"dependencies": {
"cheerio": "1.0.0",
"escape-regexp": "0.0.1",
"got": "^14.4.4",
"html-entities": "2.5.2",
"iconv-lite": "0.6.3",
"jschardet": "3.1.4",
"private-ip": "3.0.2"
}
}