Files
summaly/package.json
tamaina 16d2b7fd1f wip
2023-02-12 09:53:57 +00:00

50 lines
1.2 KiB
JSON

{
"name": "summaly",
"version": "3.0.0-alpha.1",
"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",
"files": [
"built",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "mocha --harmony",
"start": "fastify start ./built/index.js"
},
"optionalDependencies": {
"fastify": "3.24.1"
},
"devDependencies": {
"@types/cheerio": "0.22.18",
"@types/debug": "4.1.7",
"@types/escape-regexp": "^0.0.1",
"@types/html-entities": "1.3.4",
"@types/mocha": "9.0.0",
"@types/node": "16.11.12",
"debug": "^4.3.4",
"express": "^4.18.2",
"fastify": "^4.13.0",
"fastify-cli": "^5.7.1",
"mocha": "^9.2.2",
"typescript": "4.5.3"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"escape-regexp": "0.0.1",
"got": "^12.5.3",
"html-entities": "2.3.2",
"iconv-lite": "0.6.3",
"jschardet": "3.0.0",
"koa": "2.13.4",
"private-ip": "2.3.3",
"trace-redirect": "1.0.6"
}
}