test-bdk-cli 1.0.7 → 1.0.8

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.
Files changed (2) hide show
  1. package/README.md +21 -2
  2. package/package.json +14 -15
package/README.md CHANGED
@@ -1,3 +1,22 @@
1
- # BoldDesk App Template
1
+ # BoldDesk Marketplace SDK CLI
2
2
 
3
- Minimal scaffold for BoldDesk apps. Use `bdk apps:new my-app` to scaffold a new project.
3
+ The BoldDesk Marketplace SDK CLI enables seamless integration of the BoldDesk marketplace tools into your development workflow. It provides a command-line interface to create, validate, pack, and publish BoldDesk apps with full TypeScript support.
4
+
5
+ 📘 Documentation
6
+ 👉 Visit the [BoldDesk Support Portal] for complete setup guides and API references.
7
+
8
+ 📝 License
9
+ The BoldDesk Marketplace SDK CLI is protected by See [LICENSE](https://www.bolddesk.com/legal/terms-of-use) for licensing details.
10
+
11
+ # Commands
12
+
13
+ - `bdk apps:create` - create a new BoldDesk app
14
+ - `bdk apps:pack` - package a BoldDesk app
15
+ - `bdk apps:run` - run a BoldDesk app locally
16
+ - `bdk apps:test` - test a BoldDesk app
17
+ - `bdk apps:validate` - validate a BoldDesk app manifest
18
+ - `bdk apps:version` - display version information
19
+
20
+ Readme
21
+ Keywords
22
+ bolddesk-marketplace-sdkcli-sdkcommand-line-tools
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "test-bdk-cli",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "test CLI",
5
5
  "author": "@BoldDesk",
6
6
  "bin": {
7
7
  "bdk": "dist/index.js"
8
8
  },
9
9
  "npmRegistry": "https://registry.npmjs.org",
10
- "license": "MIT",
10
+ "license": "SEE LICENSE IN README.md",
11
11
  "scripts": {
12
12
  "build": "npx tsc -p tsconfig.json",
13
13
  "dev": "ts-node src/index.ts",
@@ -15,25 +15,24 @@
15
15
  "test": "jest"
16
16
  },
17
17
  "dependencies": {
18
- "ajv": "^8.12.0",
19
- "archiver": "^5.3.1",
20
- "chokidar": "^3.5.3",
21
- "commander": "^10.0.0",
22
- "form-data": "^4.0.0",
23
- "inquirer": "^9.0.0",
24
- "node-fetch": "^2.6.7"
18
+ "ajv": "^8.20.0",
19
+ "archiver": "^5.3.2",
20
+ "chokidar": "^3.6.0",
21
+ "commander": "^10.0.1",
22
+ "form-data": "^4.0.5",
23
+ "inquirer": "^9.3.8",
24
+ "node-fetch": "^2.7.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/archiver": "^7.0.0",
28
- "@types/commander": "^2.12.2",
29
28
  "@types/inquirer": "^9.0.9",
30
29
  "@types/jest": "^30.0.0",
31
- "@types/node": "^18.0.0",
30
+ "@types/node": "^20.0.0",
32
31
  "@types/node-fetch": "^2.6.13",
33
- "jest": "^29.0.0",
34
- "ts-jest": "^29.0.0",
35
- "ts-node": "^10.9.1",
36
- "typescript": "^5.0.0"
32
+ "jest": "^29.7.0",
33
+ "ts-jest": "^29.4.11",
34
+ "ts-node": "^10.9.2",
35
+ "typescript": "^5.3.0"
37
36
  },
38
37
  "main": "dist/index.js",
39
38
  "files": [