investing-economic-calendar
Version:
Extract economic events from the Investing.com widget.
40 lines (39 loc) • 1.06 kB
JSON
{
"name": "investing-economic-calendar",
"version": "0.1.0",
"author": "lludol",
"repository": "git@github.com:lludol/investing-economic-calendar.git",
"main": "./dist/index.js",
"type": "module",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/node": "^22.19.17",
"typescript": "^5.9.3"
},
"bugs": {
"url": "https://github.com/lludol/investing-economic-calendar/issues"
},
"engines": {
"node": ">=16"
},
"keywords": [
"investing-economic-calendar",
"investing",
"investing.com",
"economic calendar"
],
"license": "MIT",
"scripts": {
"build": "bun run build:types && bun build src/*.ts --outdir dist --target node --splitting --format esm",
"build:types": "tsc src/*.ts --emitDeclarationOnly --declaration --outDir dist --skipLibCheck",
"start": "node dist/index.js",
"lint": "bunx biome check --write src/*"
},
"types": "./dist/index.d.ts",
"private": false,
"dependencies": {
"cheerio": "^1.2.0",
"domhandler": "^6.0.1"
}
}