UNPKG

@nextcloud/auth

Version:

Nextcloud helpers related to authentication and the current user

67 lines (66 loc) 1.73 kB
{ "name": "@nextcloud/auth", "version": "2.5.2", "description": "Nextcloud helpers related to authentication and the current user", "keywords": [ "nextcloud" ], "homepage": "https://github.com/nextcloud/nextcloud-auth#readme", "repository": { "type": "git", "url": "https://github.com/nextcloud/nextcloud-auth" }, "license": "GPL-3.0-or-later", "author": "Christoph Wurst", "type": "module", "exports": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" }, "main": "dist/index.cjs", "types": "dist/index.d.ts", "files": [ "dist/" ], "scripts": { "build": "vite --mode production build", "build:doc": "typedoc --out dist/doc lib/index.ts && touch dist/doc/.nojekyll", "dev": "vite --mode development build", "lint": "eslint", "lint:fix": "eslint --fix", "test": "vitest run", "test:coverage": "vitest run --coverage", "test:watch": "vitest watch", "watch": "vite --mode development build --watch" }, "dependencies": { "@nextcloud/browser-storage": "^0.4.0", "@nextcloud/event-bus": "^3.3.2" }, "devDependencies": { "@nextcloud/eslint-config": "^9.0.0-rc.2", "@nextcloud/typings": "^1.9.1", "@nextcloud/vite-config": "^2.3.5", "@vitest/coverage-v8": "^3.2.4", "eslint": "^9.29.0", "happy-dom": "^18.0.1", "typedoc": "^0.28.5", "typescript": "^5.8.3", "vite": "^6.3.5", "vitest": "^3.1.3" }, "engines": { "node": "^20.0.0 || ^22.0.0 || ^24.0.0" }, "devEngines": { "packageManager": { "name": "npm", "version": "^10.0.0" }, "runtime": { "name": "node", "version": "^22.0.0" } } }