bc-api-client
Version:
A client for the BigCommerce management API and app authentication
70 lines • 1.67 kB
JSON
{
"name": "bc-api-client",
"version": "0.1.0-beta.26",
"description": "A client for the BigCommerce management API and app authentication",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": "./dist/index.js",
"./endpoints": "./dist/endpoints.js",
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/kernelpanic99/bc-api-client"
},
"homepage": "https://github.com/kernelpanic99/bc-api-client",
"bugs": {
"url": "https://github.com/kernelpanic99/bc-api-client/issues"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"bigcommerce",
"api",
"client",
"typescript",
"jwt",
"authentication"
],
"publishConfig": {
"access": "public"
},
"author": "Arthur Nikolaienko",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.15.3",
"dotenv": "^16.5.0",
"esbuild": "^0.25.3",
"esbuild-plugin-d.ts": "^1.3.1",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"pino": "^9.6.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1",
"vitest": "^3.1.2"
},
"dependencies": {
"jose": "^5.2.2",
"ky": "^1.1.0"
},
"scripts": {
"test": "vitest",
"lint": "eslint . --fix",
"format": "prettier --write .",
"build": "pnpm lint && node build.mjs",
"prepublish": "pnpm build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
}
}