UNPKG

@inkress/admin-sdk

Version:

Official Inkress Commerce API SDK for JavaScript/TypeScript

93 lines (92 loc) 2.11 kB
{ "name": "@inkress/admin-sdk", "version": "1.0.0", "description": "Official Inkress Commerce API SDK for JavaScript/TypeScript", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "private": false, "type": "module", "exports": { ".": { "import": "./dist/index.esm.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ "dist", "README.md", "CHANGELOG.md", "CONTRIBUTING.md", "LICENSE" ], "scripts": { "build": "rollup -c", "dev": "rollup -c -w", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src --ext .ts,.js", "lint:fix": "eslint src --ext .ts,.js --fix", "type-check": "tsc --noEmit", "clean": "rm -rf dist", "prepare": "npm run clean && npm run build" }, "keywords": [ "inkress", "commerce", "api", "sdk", "payments", "ecommerce", "typescript", "javascript", "rest-api", "client", "admin", "storefront", "orders", "products", "merchants" ], "author": { "name": "Inkress", "email": "dev@inkress.com", "url": "https://inkress.com" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/inkress/admin-sdk.git" }, "bugs": { "url": "https://github.com/inkress/admin-sdk/issues" }, "homepage": "https://github.com/inkress/admin-sdk#readme", "devDependencies": { "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-typescript": "^11.1.5", "@types/jest": "^29.5.8", "@types/node": "^20.9.0", "@typescript-eslint/eslint-plugin": "^6.11.0", "@typescript-eslint/parser": "^6.11.0", "eslint": "^8.53.0", "jest": "^29.7.0", "rollup": "^4.5.0", "ts-jest": "^29.1.1", "tslib": "^2.6.2", "typescript": "^5.2.2" }, "dependencies": { "cross-fetch": "^4.0.0" }, "peerDependencies": { "typescript": ">=4.0.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }