UNPKG

printify-sdk-js

Version:
98 lines (97 loc) 2.44 kB
{ "name": "printify-sdk-js", "version": "1.3.0", "description": "Node.js SDK for the Printify API.", "author": "Spencer Lepine <spencer.sayhello@gmail.com>", "license": "MIT", "homepage": "https://github.com/spencerlepine/printify-sdk-js#readme", "repository": { "type": "git", "url": "https://github.com/spencerlepine/printify-sdk-js.git" }, "bugs": { "url": "https://github.com/spencerlepine/printify-sdk-js/issues" }, "keywords": [ "printify", "sdk", "javascript", "typescript", "nodejs", "api", "print-on-demand", "printify-sdk", "printify-integration", "printify-api", "node-sdk" ], "main": "dist/index.cjs.js", "module": "dist/index.esm.js", "types": "dist/index.d.mts", "files": [ "dist/index.cjs.js", "dist/index.esm.js", "dist/index.d.mts", "docs/API.md" ], "exports": { ".": { "import": "./dist/index.esm.js", "require": "./dist/index.cjs.js", "types": "./dist/index.d.mts" } }, "scripts": { "build": "rollup -c", "release": "npm run test && npm run build", "test": "jest", "format": "prettier --write .", "lint": "eslint . --ext .js,.jsx,.ts,.tsx", "lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix" }, "husky": { "hooks": { "pre-commit": "lint-staged && npm run release" } }, "lint-staged": { "*.{js,jsx,ts,tsx,json,css,scss,md}": [ "prettier --write" ] }, "dependencies": { "axios": "^1.7.7", "axios-retry": "^4.5.0" }, "peerDependencies": { "axios": "^1.7.7" }, "devDependencies": { "@jest/types": "^29.6.3", "@rollup/plugin-commonjs": "^26.0.1", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^15.2.3", "@types/jest": "^29.5.14", "@types/node": "^20.14.10", "@typescript-eslint/eslint-plugin": "^5.8.0", "@typescript-eslint/parser": "^5.8.0", "eslint": "^8.0.0", "eslint-plugin-prettier": "^5.2.1", "husky": "4.3.8", "jest": "^29.7.0", "lint-staged": "10.5.4", "prettier": "2.8.8", "rollup": "^2.79.1", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-dts": "^6.1.1", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.36.0", "ts-jest": "^29.2.3", "tslib": "^2.6.3", "typescript": "^5.5.3" }, "engines": { "node": ">= 18" } }