UNPKG

ldapts

Version:
103 lines (102 loc) 2.76 kB
{ "name": "ldapts", "version": "8.1.8", "description": "LDAP client", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "type": "module", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "files": [ "dist", "src" ], "scripts": { "build": "unbuild", "test": "npm run test:types && vitest run", "test:types": "tsgo --noEmit --skipLibCheck", "test:imports": "node --no-experimental-require-module tests/import.tests.cjs && node tests/import.tests.mjs", "lint:markdown": "prettier --write '*.md' '!(node_modules|dist)/**/*.md' && markdownlint '*.md' '!(node_modules|dist)/**/*.md' --config=.github/linters/.markdown-lint.yml --fix", "lint:code": "eslint --fix", "lint": "run-p lint:*", "lint-staged": "lint-staged", "docker:up": "docker compose up -d --wait", "docker:down": "docker compose down", "beta": "npm publish --tag beta", "prepublishOnly": "pinst --disable", "postpublish": "pinst --enable", "prepare": "husky" }, "lint-staged": { "*.md": [ "prettier --write", "markdownlint --config=.github/linters/.markdown-lint.yml --fix" ], "*.{cjs,mjs,ts}": [ "eslint --fix" ], "*.{json5,yml}": [ "prettier --write" ] }, "repository": { "type": "git", "url": "git+https://github.com/ldapts/ldapts.git" }, "engines": { "node": ">=20" }, "keywords": [ "ldap", "active", "directory" ], "author": "jim@biacreations.com", "license": "MIT", "bugs": { "url": "https://github.com/ldapts/ldapts/issues" }, "homepage": "https://github.com/ldapts/ldapts#readme", "dependencies": { "strict-event-emitter-types": "2.0.0" }, "devDependencies": { "@semantic-release/changelog": "6.0.3", "@semantic-release/commit-analyzer": "13.0.1", "@semantic-release/git": "10.0.1", "@semantic-release/github": "12.0.8", "@semantic-release/npm": "13.1.5", "@semantic-release/release-notes-generator": "14.1.1", "@types/node": ">=20", "@typescript/native-preview": "7.0.0-dev.20260516.1", "eslint": "10.4.0", "eslint-config-decent": "4.2.37", "husky": "9.1.7", "lint-staged": "17.0.5", "markdownlint-cli": "0.48.0", "node-forge": "1.4.0", "npm-run-all2": "8.0.4", "pinst": "3.0.0", "prettier": "3.8.3", "semantic-release": "25.0.3", "typescript": "6.0.3", "unbuild": "3.6.1", "vitest": "4.1.6" }, "overrides": { "unbuild": { "typescript": "$typescript" } } }