-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.53 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": "@stevent-team/favicon-scout",
"version": "1.1.0",
"description": "A web service to fetch the favicon of any website",
"keywords": [
"favicon",
"scraper",
"icon"
],
"repository": "https://github.com/stevent-team/favicon-scout",
"author": "Stevent",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"bin": {
"favicon-scout": "./dist/index.js"
},
"scripts": {
"start": "node dist/index.js",
"build": "esbuild src/index.ts --platform=node --target=node16 --format=esm --bundle --external:fastify --external:@fastify/cors --external:commander --external:node-fetch --external:node-html-parser --external:sharp --external:sharp-ico --external:./node_modules/* --minify --outfile=dist/index.js",
"dev": "nodemon --exec \"yarn build && yarn start\" --watch src --ext ts,js",
"lint": "eslint --ext .ts src",
"test": "vitest",
"ci:release": "yarn build && yarn changeset publish"
},
"dependencies": {
"@fastify/cors": "^8.1.0",
"commander": "^9.4.1",
"fastify": "^4.8.1",
"node-fetch": "2.x.x",
"node-html-parser": "^6.1.1",
"sharp": "^0.31.1",
"sharp-ico": "^0.1.5"
},
"devDependencies": {
"@changesets/cli": "^2.25.0",
"@types/node": "^18.8.4",
"@types/node-fetch": "^2.6.2",
"@types/sharp": "^0.31.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"esbuild": "^0.15.10",
"eslint": "^8.25.0",
"nodemon": "^2.0.20",
"typescript": "^4.8.4",
"vitest": "^0.24.1"
}
}