forked from syuilo/summaly
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.28 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
{
"name": "@misskey-dev/summaly",
"version": "5.2.5",
"description": "Get web page's summary",
"author": "syuilo <syuilotan@yahoo.co.jp>",
"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": "pnpm@9.15.9",
"files": [
"built",
"LICENSE"
],
"scripts": {
"build": "tsc && tsc-alias",
"eslint": "eslint",
"test": "vitest run ./test/index.test.ts",
"serve": "fastify start ./built/index.js"
},
"devDependencies": {
"@misskey-dev/eslint-plugin": "^2.1.0",
"@types/debug": "4.1.12",
"@types/escape-regexp": "^0.0.3",
"@types/node": "24.9.1",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"debug": "^4.4.3",
"eslint": "^9.38.0",
"eslint-plugin-import": "^2.32.0",
"fastify": "^5.6.1",
"fastify-cli": "^7.4.0",
"tsc-alias": "^1.8.16",
"typescript": "5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"cheerio": "1.1.2",
"escape-regexp": "0.0.1",
"got": "14.6.5",
"html-entities": "2.6.0",
"iconv-lite": "0.7.0",
"jschardet": "3.1.4",
"private-ip": "3.0.2"
}
}