clishop 1.1.0 → 1.2.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/LICENSE +1 -196
- package/README.md +181 -640
- package/dist/index.js +22 -16
- package/dist/mcp.js +562 -4
- package/package.json +65 -65
package/package.json
CHANGED
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "clishop",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"mcpName": "io.github.StefDCL/clishop",
|
|
5
|
-
"description": "CLISHOP — Order anything from your terminal",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist"
|
|
9
|
-
],
|
|
10
|
-
"bin": {
|
|
11
|
-
"clishop": "dist/index.js",
|
|
12
|
-
"clishop-mcp": "dist/mcp.js"
|
|
13
|
-
},
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "tsup",
|
|
16
|
-
"dev": "tsx src/index.ts",
|
|
17
|
-
"dev:mcp": "tsx src/mcp.ts",
|
|
18
|
-
"start": "node dist/index.js",
|
|
19
|
-
"start:mcp": "node dist/mcp.js",
|
|
20
|
-
"lint": "tsc --noEmit"
|
|
21
|
-
},
|
|
22
|
-
"repository": {
|
|
23
|
-
"type": "git",
|
|
24
|
-
"url": "git+https://github.com/DavooxBv2/CLISHOP.git"
|
|
25
|
-
},
|
|
26
|
-
"keywords": [
|
|
27
|
-
"cli",
|
|
28
|
-
"shopping",
|
|
29
|
-
"ordering",
|
|
30
|
-
"mcp",
|
|
31
|
-
"model-context-protocol",
|
|
32
|
-
"ai",
|
|
33
|
-
"agent"
|
|
34
|
-
],
|
|
35
|
-
"author": "",
|
|
36
|
-
"license": "
|
|
37
|
-
"type": "module",
|
|
38
|
-
"engines": {
|
|
39
|
-
"node": ">=18"
|
|
40
|
-
},
|
|
41
|
-
"bugs": {
|
|
42
|
-
"url": "https://github.com/DavooxBv2/CLISHOP/issues"
|
|
43
|
-
},
|
|
44
|
-
"homepage": "https://github.com/DavooxBv2/CLISHOP#readme",
|
|
45
|
-
"dependencies": {
|
|
46
|
-
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
47
|
-
"axios": "^1.13.5",
|
|
48
|
-
"chalk": "^5.6.2",
|
|
49
|
-
"commander": "^14.0.3",
|
|
50
|
-
"conf": "^15.1.0",
|
|
51
|
-
"inquirer": "^13.2.4",
|
|
52
|
-
"keytar": "^7.9.0",
|
|
53
|
-
"open": "^11.0.0",
|
|
54
|
-
"ora": "^9.3.0"
|
|
55
|
-
},
|
|
56
|
-
"devDependencies": {
|
|
57
|
-
"@types/inquirer": "^9.0.9",
|
|
58
|
-
"@types/keytar": "^4.4.0",
|
|
59
|
-
"@types/node": "^25.2.3",
|
|
60
|
-
"ts-node": "^10.9.2",
|
|
61
|
-
"tsup": "^8.5.1",
|
|
62
|
-
"tsx": "^4.21.0",
|
|
63
|
-
"typescript": "^5.9.3"
|
|
64
|
-
}
|
|
65
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "clishop",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"mcpName": "io.github.StefDCL/clishop",
|
|
5
|
+
"description": "CLISHOP — Order anything from your terminal",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"bin": {
|
|
11
|
+
"clishop": "dist/index.js",
|
|
12
|
+
"clishop-mcp": "dist/mcp.js"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsup",
|
|
16
|
+
"dev": "tsx src/index.ts",
|
|
17
|
+
"dev:mcp": "tsx src/mcp.ts",
|
|
18
|
+
"start": "node dist/index.js",
|
|
19
|
+
"start:mcp": "node dist/mcp.js",
|
|
20
|
+
"lint": "tsc --noEmit"
|
|
21
|
+
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/DavooxBv2/CLISHOP.git"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"cli",
|
|
28
|
+
"shopping",
|
|
29
|
+
"ordering",
|
|
30
|
+
"mcp",
|
|
31
|
+
"model-context-protocol",
|
|
32
|
+
"ai",
|
|
33
|
+
"agent"
|
|
34
|
+
],
|
|
35
|
+
"author": "",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"type": "module",
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=18"
|
|
40
|
+
},
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/DavooxBv2/CLISHOP/issues"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://github.com/DavooxBv2/CLISHOP#readme",
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
47
|
+
"axios": "^1.13.5",
|
|
48
|
+
"chalk": "^5.6.2",
|
|
49
|
+
"commander": "^14.0.3",
|
|
50
|
+
"conf": "^15.1.0",
|
|
51
|
+
"inquirer": "^13.2.4",
|
|
52
|
+
"keytar": "^7.9.0",
|
|
53
|
+
"open": "^11.0.0",
|
|
54
|
+
"ora": "^9.3.0"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@types/inquirer": "^9.0.9",
|
|
58
|
+
"@types/keytar": "^4.4.0",
|
|
59
|
+
"@types/node": "^25.2.3",
|
|
60
|
+
"ts-node": "^10.9.2",
|
|
61
|
+
"tsup": "^8.5.1",
|
|
62
|
+
"tsx": "^4.21.0",
|
|
63
|
+
"typescript": "^5.9.3"
|
|
64
|
+
}
|
|
65
|
+
}
|