asyncdesk 0.0.1
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/README.md +19 -0
- package/bin/asyncdesk.js +14 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# asyncdesk
|
|
2
|
+
|
|
3
|
+
CLI for [AsyncDesk](https://asyncdesk.com) - documentation generation, support tickets, and monitoring for web applications.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx asyncdesk
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Commands (coming soon)
|
|
12
|
+
|
|
13
|
+
- `login` - Authenticate with asyncdesk.com
|
|
14
|
+
- `generate-doc` - Generate documentation from your codebase using AI
|
|
15
|
+
- `update-doc` - Push documentation updates to asyncdesk.com
|
|
16
|
+
|
|
17
|
+
## Learn more
|
|
18
|
+
|
|
19
|
+
Visit [asyncdesk.com](https://asyncdesk.com) for more information.
|
package/bin/asyncdesk.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
console.log(`
|
|
4
|
+
asyncdesk v0.0.1
|
|
5
|
+
|
|
6
|
+
Coming soon - CLI for AsyncDesk
|
|
7
|
+
|
|
8
|
+
Planned commands:
|
|
9
|
+
login Authenticate with asyncdesk.com
|
|
10
|
+
generate-doc Generate documentation from your codebase using AI
|
|
11
|
+
update-doc Push documentation updates to asyncdesk.com
|
|
12
|
+
|
|
13
|
+
Learn more at https://asyncdesk.com
|
|
14
|
+
`);
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "asyncdesk",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "CLI for AsyncDesk - documentation generation, support tickets, and monitoring for web applications",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"asyncdesk": "bin/asyncdesk.js"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"support",
|
|
11
|
+
"documentation",
|
|
12
|
+
"monitoring",
|
|
13
|
+
"helpdesk",
|
|
14
|
+
"customer-support",
|
|
15
|
+
"docs-generator",
|
|
16
|
+
"cli"
|
|
17
|
+
],
|
|
18
|
+
"author": "Conrad",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"homepage": "https://asyncdesk.com",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/asyncdesk/asyncdesk.git"
|
|
24
|
+
},
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=18"
|
|
27
|
+
}
|
|
28
|
+
}
|