test-bdk-cli 1.0.7 → 1.0.9
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 +22 -2
- package/package.json +22 -19
package/README.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
-
# BoldDesk
|
|
1
|
+
# BoldDesk Marketplace SDK CLI
|
|
2
2
|
|
|
3
|
-
|
|
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
|
+
- `bdk apps:help` - command details
|
|
20
|
+
|
|
21
|
+
## Keywords
|
|
22
|
+
|
|
23
|
+
`bolddesk` `marketplace` `sdk` `cli` `command-line-tools` `apps` `developer`
|
package/package.json
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "test-bdk-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "test CLI",
|
|
5
5
|
"author": "@BoldDesk",
|
|
6
6
|
"bin": {
|
|
7
7
|
"bdk": "dist/index.js"
|
|
8
8
|
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"bdk",
|
|
11
|
+
"bolddesk",
|
|
12
|
+
"command",
|
|
13
|
+
"cli",
|
|
14
|
+
"sdk"
|
|
15
|
+
],
|
|
9
16
|
"npmRegistry": "https://registry.npmjs.org",
|
|
10
|
-
"license": "
|
|
17
|
+
"license": "SEE LICENSE IN README.md",
|
|
11
18
|
"scripts": {
|
|
12
19
|
"build": "npx tsc -p tsconfig.json",
|
|
13
20
|
"dev": "ts-node src/index.ts",
|
|
@@ -15,25 +22,24 @@
|
|
|
15
22
|
"test": "jest"
|
|
16
23
|
},
|
|
17
24
|
"dependencies": {
|
|
18
|
-
"ajv": "^8.
|
|
19
|
-
"archiver": "^5.3.
|
|
20
|
-
"chokidar": "^3.
|
|
21
|
-
"commander": "^10.0.
|
|
22
|
-
"form-data": "^4.0.
|
|
23
|
-
"inquirer": "^9.
|
|
24
|
-
"node-fetch": "^2.
|
|
25
|
+
"ajv": "^8.20.0",
|
|
26
|
+
"archiver": "^5.3.2",
|
|
27
|
+
"chokidar": "^3.6.0",
|
|
28
|
+
"commander": "^10.0.1",
|
|
29
|
+
"form-data": "^4.0.5",
|
|
30
|
+
"inquirer": "^9.3.8",
|
|
31
|
+
"node-fetch": "^2.7.0"
|
|
25
32
|
},
|
|
26
33
|
"devDependencies": {
|
|
27
34
|
"@types/archiver": "^7.0.0",
|
|
28
|
-
"@types/commander": "^2.12.2",
|
|
29
35
|
"@types/inquirer": "^9.0.9",
|
|
30
36
|
"@types/jest": "^30.0.0",
|
|
31
|
-
"@types/node": "^
|
|
37
|
+
"@types/node": "^20.0.0",
|
|
32
38
|
"@types/node-fetch": "^2.6.13",
|
|
33
|
-
"jest": "^29.
|
|
34
|
-
"ts-jest": "^29.
|
|
35
|
-
"ts-node": "^10.9.
|
|
36
|
-
"typescript": "^5.
|
|
39
|
+
"jest": "^29.7.0",
|
|
40
|
+
"ts-jest": "^29.4.11",
|
|
41
|
+
"ts-node": "^10.9.2",
|
|
42
|
+
"typescript": "^5.3.0"
|
|
37
43
|
},
|
|
38
44
|
"main": "dist/index.js",
|
|
39
45
|
"files": [
|
|
@@ -61,10 +67,7 @@
|
|
|
61
67
|
"/src/"
|
|
62
68
|
],
|
|
63
69
|
"transform": {
|
|
64
|
-
"^.+\\.tsx?$": [
|
|
65
|
-
"ts-jest",
|
|
66
|
-
{}
|
|
67
|
-
]
|
|
70
|
+
"^.+\\.tsx?$": ["ts-jest", {}]
|
|
68
71
|
}
|
|
69
72
|
}
|
|
70
73
|
}
|