UNPKG

@tanqory/core

Version:

Essential SDK for Tanqory's e-commerce platform with API handling, authentication, and error management

94 lines (93 loc) 2.46 kB
{ "name": "@tanqory/core", "version": "0.0.3", "description": "Essential SDK for Tanqory's e-commerce platform with API handling, authentication, and error management", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "tsc", "dev": "tsc --watch", "clean": "rm -rf dist", "prepare": "npm run clean && npm run build", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write \"src/**/*.{ts,js,json,md}\"", "format:check": "prettier --check \"src/**/*.{ts,js,json,md}\"", "typecheck": "tsc --noEmit", "audit": "npm audit --audit-level=moderate", "audit:fix": "npm audit fix" }, "keywords": [ "tanqory", "e-commerce", "api", "sdk", "authentication", "http-client" ], "author": "Tanqory Team", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/tanqory/core.git" }, "bugs": { "url": "https://github.com/tanqory/core/issues" }, "homepage": "https://github.com/tanqory/core#readme", "dependencies": { "axios": "^1.6.0" }, "devDependencies": { "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^11.1.0", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^9.2.6", "@semantic-release/npm": "^11.0.2", "@semantic-release/release-notes-generator": "^12.1.0", "@types/jest": "^29.5.8", "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^8.43.0", "@typescript-eslint/parser": "^8.43.0", "eslint": "^8.54.0", "eslint-config-prettier": "^9.1.2", "eslint-plugin-prettier": "^5.5.4", "husky": "^8.0.3", "jest": "^29.7.0", "license-checker": "^25.0.1", "lint-staged": "^15.0.2", "prettier": "^3.0.3", "semantic-release": "^22.0.12", "ts-jest": "^29.1.1", "typescript": "^5.3.0" }, "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" }, "lint-staged": { "src/**/*.{ts,js}": [ "eslint --fix", "prettier --write", "git add" ], "src/**/*.{json,md}": [ "prettier --write", "git add" ] }, "husky": { "hooks": { "pre-commit": "lint-staged", "pre-push": "npm run test && npm run typecheck" } } }