-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 954 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@mimamch/cmd",
"version": "1.2.0",
"description": "A command processor library for handling interactive commands",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"No tests specified\"",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mimamch/cmd.git"
},
"keywords": [
"command processor",
"command handler",
"command execution",
"command parsing",
"command-based interaction",
"command-driven application",
"CLI (Command-Line Interface) framework",
"chatbot command handling",
"interactive bot commands",
"command dispatching",
"command event handling"
],
"author": "@mimamch",
"license": "MIT",
"bugs": {
"url": "https://github.com/mimamch/cmd/issues"
},
"homepage": "https://github.com/mimamch/cmd#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}