UNPKG

@swishapp/node

Version:

JS library to integrate Swish on a Node.js server.

60 lines (59 loc) 1.4 kB
{ "name": "@swishapp/node", "version": "0.41.0", "description": "JS library to integrate Swish on a Node.js server.", "author": "Swish", "license": "UNLICENSED", "homepage": "https://developers.swish.app/libraries/node.js", "type": "module", "publishConfig": { "access": "public" }, "scripts": { "build": "node esbuild.js && tsc -p tsconfig.build.json", "dev": "node esbuild.js --watch && tsc -p tsconfig.build.json", "clean": "rimraf dist", "test": "jest", "test:watch": "jest --watch", "prepublishOnly": "npm run clean && npm run build" }, "dependencies": { "@swishapp/api-client": "0.19.0", "@swishapp/browser": "0.29.0" }, "devDependencies": { "@types/jest": "29.5.14", "@types/node": "22.15.3", "esbuild": "0.25.2", "jest": "29.7.0", "rimraf": "6.0.1", "ts-jest": "29.3.2", "ts-node": "10.9.2", "typescript": "5.8.3" }, "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "module": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "default": "./dist/index.js" } }, "files": [ "dist/**/*.*", "README.md" ], "keywords": [ "swish", "shopify", "js" ] }