metalens
Version:
cli that lets you preview metadata of any website locally
48 lines • 1.11 kB
JSON
{
"name": "metalens",
"version": "0.0.8",
"description": "cli that lets you preview metadata of any website locally",
"module": "dist/index.js",
"type": "module",
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node",
"dev": "METALENS_DEV=true bun run src/index.ts",
"start": "METALENS_DEV=false bun run dist/index.js",
"test": "bun test",
"publish": "bun run build && npm publish --access public"
},
"bin": {
"metalens": "./dist/index.js"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/rudrodip/metalens"
},
"author": "rudrodip",
"keywords": [
"metalens",
"metatags",
"opengraph",
"preview",
"metadata"
],
"dependencies": {
"@hono/node-server": "^1.14.1",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"hono": "^4.7.8",
"html-entities": "^2.6.0",
"inquirer": "^12.6.0",
"open": "^10.1.1"
}
}