bigrequest
Version:
A typesafe, servelerless-friendly Node.js HTTP request client for the BigCommerce API
66 lines • 1.62 kB
JSON
{
"name": "bigrequest",
"version": "0.0.59",
"description": "A typesafe, servelerless-friendly Node.js HTTP request client for the BigCommerce API",
"author": "Matthew Volk",
"license": "MIT",
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"jose": "^5.1.3",
"openapi-fetch": "^0.8.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@bigcommerce/eslint-config": "^2.9.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "18.0.0",
"eslint": "^8.46.0",
"openapi-typescript": "^6.7.3",
"openapi-typescript-helpers": "^0.0.4",
"prettier": "^3.0.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"keywords": [
"bigcommerce",
"big",
"commerce",
"api",
"node",
"typescript",
"javascript",
"ecommerce"
],
"repository": {
"type": "git",
"url": "git+https://github.com/matthewvolk/bigrequest.git",
"directory": "packages/bigrequest"
},
"bugs": {
"url": "https://github.com/matthewvolk/bigrequest/issues"
},
"homepage": "https://github.com/matthewvolk/bigrequest#readme",
"prettier": "@bigcommerce/eslint-config/prettier",
"scripts": {
"build": "tsup",
"lint": "eslint . --max-warnings 0",
"check-types": "tsc --noEmit",
"generate": "node src/generate.mjs",
"test": "echo \"No test specified\""
}
}