acq-sdk
Version:
SDK oficial para a API da ACQ
85 lines (84 loc) • 2 kB
JSON
{
"name": "acq-sdk",
"version": "1.2.1",
"type": "module",
"description": "SDK oficial para a API da ACQ",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"verify": "node scripts/verify.js",
"prepublishOnly": "npm run build && npm run test && npm run verify",
"docs": "typedoc src/index.ts"
},
"keywords": [
"acq",
"api",
"sdk",
"email",
"render",
"html",
"image",
"temporary-email",
"mail",
"websocket",
"socket",
"real-time",
"notification"
],
"author": "ACQ Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/acqstudios/acq-sdk.git"
},
"bugs": {
"url": "https://github.com/acqstudios/acq-sdk/issues"
},
"homepage": "https://github.com/acqstudios/acq-sdk#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"rollup": "^4.9.5",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.5",
"socket.io-client": "4.8.1"
},
"engines": {
"node": ">=16.0.0"
}
}