forked from misskey-dev/summaly
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.7 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
{
"name": "@misskey-dev/summaly",
"version": "5.1.3",
"description": "Get web page's summary",
"author": "syuilo <[email protected]>",
"license": "MIT",
"repository": "https://github.com/MisskeyIO/summaly.git",
"bugs": "https://github.com/MisskeyIO/summaly/issues",
"main": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"packageManager": "[email protected]+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf",
"files": ["dist", "LICENSE"],
"scripts": {
"build": "pnpm run build:swc && pnpm run build:dts",
"build:swc": "swc src -d dist -D --strip-leading-paths",
"build:dts": "tsc --outDir dist --declaration true --emitDeclarationOnly true --declarationMap true",
"clean": "node scripts/clean.cjs",
"format": "biome check --write",
"check": "pnpm run build && biome check",
"test": "node --experimental-vm-modules --experimental-import-meta-resolve node_modules/jest/bin/jest.js --silent=false --verbose false",
"serve": "pnpm dlx fastify-cli start ./dist/index.js"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@jest/globals": "29.7.0",
"@swc/cli": "0.5.2",
"@swc/core": "1.10.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.10.2",
"debug": "4.4.0",
"fastify": "5.2.0",
"jest": "29.7.0",
"lefthook": "1.10.0",
"typescript": "5.7.2"
},
"dependencies": {
"cheerio": "1.0.0",
"escape-regexp": "0.0.1",
"got": "14.4.5",
"html-entities": "2.5.2",
"iconv-lite": "0.6.3",
"private-ip": "3.0.2"
}
}