-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.34 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "lldap-cli",
"version": "1.2.5",
"description": "CLI tool for managing LLDAP (Lightweight LDAP) users, groups, and schema",
"type": "module",
"bin": {
"lldap-cli": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun build ./src/cli.ts --outdir ./dist --target node",
"dev": "bun run ./src/cli.ts",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"dependencies": {
"commander": "^14.0.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "^1.1.14",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^10.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.0.0"
},
"keywords": [
"lldap",
"ldap",
"cli",
"user-management",
"graphql",
"bun",
"typescript"
],
"author": "Stephen Eaton",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/madeinoz67/lldap-cli.git"
},
"homepage": "https://github.com/madeinoz67/lldap-cli#readme",
"bugs": {
"url": "https://github.com/madeinoz67/lldap-cli/issues"
},
"engines": {
"node": ">=18.0.0"
}
}