UNPKG

learnworlds-js

Version:

TypeScript SDK for LearnWorlds API with full type safety and comprehensive method coverage

79 lines (78 loc) 1.88 kB
{ "name": "learnworlds-js", "version": "1.0.0", "description": "TypeScript SDK for LearnWorlds API with full type safety and comprehensive method coverage", "homepage": "https://github.com/mdwt/learnworlds-js#readme", "repository": { "type": "git", "url": "git+https://github.com/mdwt/learnworlds-js.git" }, "bugs": { "url": "https://github.com/mdwt/learnworlds-js/issues" }, "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "type": "module", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.js", "types": "./dist/index.d.ts" } }, "sideEffects": false, "scripts": { "build": "tsup src/index.ts --format esm,cjs --dts", "dev": "tsup src/index.ts --format esm,cjs --dts --watch", "test": "vitest", "test:watch": "vitest --watch", "lint": "eslint src --ext .ts", "typecheck": "tsc --noEmit", "prepublishOnly": "pnpm run build", "clean": "rm -rf dist" }, "keywords": [ "learnworlds", "api", "sdk", "typescript", "javascript", "lms", "learning-management-system", "e-learning", "rest-api", "client" ], "author": { "name": "mdwt", "url": "https://github.com/mdwt" }, "license": "MIT", "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" }, "devDependencies": { "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^6.13.0", "@typescript-eslint/parser": "^6.13.0", "eslint": "^8.54.0", "semantic-release": "^22.0.0", "@semantic-release/changelog": "^6.0.0", "@semantic-release/git": "^10.0.0", "tsup": "^8.0.0", "typescript": "^5.3.0", "vitest": "^1.0.0" }, "dependencies": { "axios": "^1.6.0" }, "files": [ "dist", "README.md", "CHANGELOG.md" ] }