UNPKG

rapiq

Version:

A tiny library which provides utility types/functions for request and response query handling.

87 lines (86 loc) 2.64 kB
{ "name": "rapiq", "version": "1.0.0", "description": "A tiny library which provides utility types/functions for request and response query handling.", "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" } }, "files": [ "dist/" ], "scripts": { "build:types": "tsc --emitDeclarationOnly", "build:js": "rollup -c", "build": "rimraf dist && npm run build:types && npm run build:js", "commit": "npx git-cz", "test": "cross-env NODE_ENV=test jest --config ./test/jest.config.js", "test:coverage": "cross-env NODE_ENV=test jest --config ./test/jest.config.js --coverage", "lint": "eslint --ext .js,.ts ./src", "lint:fix": "npm run lint -- --fix", "docs:dev": "vitepress dev docs --temp .temp", "docs:build": "vitepress build docs --temp .temp", "docs:help": "vitepress --help", "prepare": "npx husky install", "prepublishOnly": "npm run build" }, "author": { "name": "Peter Placzek", "email": "contact@tada5hi.net", "url": "https://github.com/tada5hi" }, "license": "MIT", "keywords": [ "query", "json", "json-api", "api", "rest", "api-utils", "include", "pagination", "sort", "fields", "filter", "relations", "typescript" ], "repository": { "type": "git", "url": "git+https://github.com/Tada5hi/rapiq.git" }, "bugs": { "url": "https://github.com/Tada5hi/rapiq/issues" }, "homepage": "https://github.com/Tada5hi/rapiq#readme", "dependencies": { "smob": "^1.5.0" }, "devDependencies": { "@rollup/plugin-node-resolve": "^16.0.1", "@swc/core": "^1.11.21", "@swc/jest": "^0.2.37", "@tada5hi/commitlint-config": "^1.2.5", "@tada5hi/eslint-config-typescript": "^1.2.16", "@tada5hi/semantic-release": "^0.3.2", "@tada5hi/tsconfig": "^0.6.0", "@types/jest": "^29.5.14", "@types/node": "^22.14.1", "cross-env": "^7.0.3", "eslint": "^8.57.0", "husky": "^9.1.7", "jest": "^29.7.0", "rimraf": "^6.0.1", "rollup": "^4.40.0", "semantic-release": "^24.2.3", "typescript": "^5.8.3", "vitepress": "^1.6.3" } }