lldap-cli 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +21 -0
- package/README.md +368 -0
- package/dist/cli.js +3626 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lldap-cli",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "CLI tool for managing LLDAP (Lightweight LDAP) users, groups, and schema",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"lldap-cli": "./dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md",
|
|
12
|
+
"LICENSE"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "bun build ./src/cli.ts --outdir ./dist --target node",
|
|
16
|
+
"dev": "bun run ./src/cli.ts",
|
|
17
|
+
"lint": "eslint src tests",
|
|
18
|
+
"lint:fix": "eslint src tests --fix",
|
|
19
|
+
"test": "bun test",
|
|
20
|
+
"test:watch": "bun test --watch",
|
|
21
|
+
"typecheck": "tsc --noEmit",
|
|
22
|
+
"prepublishOnly": "bun run build"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"commander": "^12.1.0"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@eslint/js": "^9.0.0",
|
|
29
|
+
"@types/bun": "^1.1.14",
|
|
30
|
+
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
31
|
+
"@typescript-eslint/parser": "^8.0.0",
|
|
32
|
+
"eslint": "^9.0.0",
|
|
33
|
+
"typescript": "^5.7.2",
|
|
34
|
+
"typescript-eslint": "^8.0.0"
|
|
35
|
+
},
|
|
36
|
+
"keywords": [
|
|
37
|
+
"lldap",
|
|
38
|
+
"ldap",
|
|
39
|
+
"cli",
|
|
40
|
+
"user-management",
|
|
41
|
+
"graphql",
|
|
42
|
+
"bun",
|
|
43
|
+
"typescript"
|
|
44
|
+
],
|
|
45
|
+
"author": "Stephen Eaton",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": "git+https://github.com/madeinoz67/lldap-cli.git"
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://github.com/madeinoz67/lldap-cli#readme",
|
|
52
|
+
"bugs": {
|
|
53
|
+
"url": "https://github.com/madeinoz67/lldap-cli/issues"
|
|
54
|
+
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=18.0.0"
|
|
57
|
+
}
|
|
58
|
+
}
|