UNPKG

@eleva-io/erp-sdk

Version:

SDK oficial para el ERP de Eleva

69 lines 1.74 kB
{ "name": "@eleva-io/erp-sdk", "version": "0.1.38", "description": "SDK oficial para el ERP de Eleva", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/cjs/index.d.ts", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js", "types": "./dist/cjs/index.d.ts" } }, "files": [ "dist" ], "keywords": [ "eleva", "erp", "sdk", "proptech" ], "author": "Eleva", "license": "MIT", "devDependencies": { "@types/jest": "30.0.0", "@types/mime-types": "3.0.1", "@types/node": "^20.19.1", "@typescript-eslint/eslint-plugin": "8.35.0", "@typescript-eslint/parser": "8.35.0", "dotenv": "^16.5.0", "eslint": "9.29.0", "eslint-config-prettier": "10.1.5", "eslint-plugin-jest": "29.0.1", "eslint-plugin-prettier": "5.5.1", "jest": "30.0.3", "prettier": "3.6.1", "ts-jest": "29.4.0", "ts-node": "10.9.2", "tsx": "^4.20.3", "typescript": "^5.8.3" }, "dependencies": { "@eslint/eslintrc": "3.3.1", "@eslint/js": "9.29.0", "axios": "^1.10.0", "moment": "2.30.1", "mrmime": "2.0.1", "pino": "9.7.0" }, "publishConfig": { "access": "public" }, "engines": { "node": ">=16", "pnpm": ">=8" }, "scripts": { "build": "pnpm build:cjs && pnpm build:esm", "build:cjs": "tsc --project tsconfig.cjs.json", "build:esm": "tsc --project tsconfig.esm.json", "test": "jest --config ./jest.config.ts", "lint": "eslint 'src/**/*.{ts,tsx}' --fix", "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"", "sandbox": "tsx sandbox/index.ts", "sandbox:watch": "tsx watch sandbox/index.ts" } }