@smartlyqofficial/cli 0.1.0

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/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@smartlyqofficial/cli",
3
+ "version": "0.1.0",
4
+ "description": "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
5
+ "keywords": [
6
+ "smartlyq",
7
+ "cli",
8
+ "social-media",
9
+ "api",
10
+ "ai",
11
+ "content-generation",
12
+ "social-posting",
13
+ "seo"
14
+ ],
15
+ "homepage": "https://docs.smartlyq.com",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/SmartlyQ/smartlyq-cli.git"
19
+ },
20
+ "license": "MIT",
21
+ "type": "module",
22
+ "main": "./dist/index.cjs",
23
+ "module": "./dist/index.js",
24
+ "types": "./dist/index.d.ts",
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/index.d.ts",
28
+ "import": "./dist/index.js",
29
+ "require": "./dist/index.cjs"
30
+ }
31
+ },
32
+ "bin": {
33
+ "smartlyq": "./dist/cli.js"
34
+ },
35
+ "files": [
36
+ "dist",
37
+ "README.md",
38
+ "LICENSE"
39
+ ],
40
+ "scripts": {
41
+ "fetch-spec": "curl -f --retry 5 --retry-delay 2 --retry-all-errors --max-time 60 -o openapi.json https://docs.smartlyq.com/openapi.json",
42
+ "generate": "tsx scripts/generate-commands.ts",
43
+ "generate:readme": "tsx scripts/generate-readme.ts",
44
+ "generate:tests": "tsx scripts/generate-tests.ts",
45
+ "build": "tsup",
46
+ "typecheck": "tsc --noEmit",
47
+ "pretest": "npm run build",
48
+ "test": "vitest run",
49
+ "test:watch": "vitest",
50
+ "prepublishOnly": "npm run build"
51
+ },
52
+ "dependencies": {
53
+ "@smartlyqofficial/node": "^0.1.2",
54
+ "commander": "^12.1.0"
55
+ },
56
+ "devDependencies": {
57
+ "@types/node": "^22.0.0",
58
+ "tsup": "^8.0.0",
59
+ "tsx": "^4.19.0",
60
+ "typescript": "^5.6.0",
61
+ "vitest": "^3.0.0"
62
+ },
63
+ "engines": {
64
+ "node": ">=18"
65
+ }
66
+ }