-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.16 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
{
"name": "favicon-pro",
"license": "MIT",
"version": "1.0.2",
"author": "https://augustin.zip/",
"files": ["dist"],
"description": "Fetch the best quality favicons of websites",
"keywords": ["logo", "icon", "favicon", "fav-ico", "website-logo"],
"main": "dist/index.cjs.js",
"exports": {
"node": "./dist/index.cjs.js",
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js"
},
"scripts": {
"build": "rm -rf dist && pnpm build:dts && pnpm build:esm && pnpm build:cjs",
"build:dts": "tsc -p tsconfig.build.json --outDir ./dist",
"build:esm": "esbuild index.ts --bundle --format=esm --outfile=./dist/index.esm.js --inject:./src/shim.esm.js",
"build:cjs": "esbuild index.ts --bundle --format=cjs --outfile=./dist/index.cjs.js --inject:./src/shim.cjs.js --packages=external"
},
"repository": "https://github.com/sudoaugustin/favicon-pro.git",
"dependencies": {
"node-fetch": "^2.7.0",
"node-html-parser": "^6.1.13"
},
"devDependencies": {
"@biomejs/biome": "^1.7.0",
"esbuild": "^0.20.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"node-fetch": "^2.7.0",
"node-html-parser": "^6.1.13"
}
}