reso.js
Version:
reso.js is a Node.js client for interacting with RESO Web API services, fully aligned with the current RESO Web API specification.
68 lines • 1.91 kB
JSON
{
"$schema": "https://json.schemastore.org/package",
"name": "reso.js",
"description": "reso.js is a Node.js client for interacting with RESO Web API services, fully aligned with the current RESO Web API specification.",
"version": "0.1.0",
"type": "module",
"license": "MIT",
"author": {
"name": "ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding"
},
"maintainers": [
{
"name": "ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding"
}
],
"homepage": "https://github.com/ComfortablyCoding/reso.js#readme",
"repository": {
"type": "git",
"url": "https://github.com/ComfortablyCoding/reso.js.git"
},
"bugs": {
"url": "https://github.com/ComfortablyCoding/reso.js/issues"
},
"keywords": [
"reso",
"webapi",
"web api",
"search"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"dependencies": {
"defu": "^6.1.4",
"ofetch": "^1.4.1",
"p-queue": "^8.1.0"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@eslint/json": "^0.12.0",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"unbuild": "^3.5.0",
"vitest": "^3.1.2"
},
"scripts": {
"test": "vitest",
"build": "unbuild",
"format": "NODE_OPTIONS='--experimental-strip-types' prettier . --write",
"format:check": "NODE_OPTIONS='--experimental-strip-types' prettier . --check",
"lint": "NODE_OPTIONS='--experimental-strip-types' eslint --flag unstable_native_nodejs_ts_config --fix .",
"lint:check": "NODE_OPTIONS='--experimental-strip-types' eslint --flag unstable_native_nodejs_ts_config ."
}
}