-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.68 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.68 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@missingstudio/cli",
"version": "0.0.7",
"description": "Missing Studio's AI assistant for interacting with the Model Context Protocol servers",
"keywords": [
"mcp",
"cli",
"ai",
"model context protocol"
],
"author": "Praveen Yadav <praveen.yadav@missing.studio>",
"type": "module",
"main": "dist/index.js",
"bin": {
"mstudio": "dist/index.js",
"missingstudio": "dist/index.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"clean": "rm -rf dist",
"dev": "tsx src/index.ts",
"start": "npm run build && node dist/index.js",
"prepare": "husky",
"typecheck": "tsc --noEmit",
"format": "prettier --check \"**/*.{js,ts,tsx,md,mdx}\"",
"format:fix": "prettier --write \"**/*.{js,ts,tsx,md,mdx}\"",
"test": "vitest --config vitest.config.js --run",
"test:watch": "vitest --config vitest.config.js",
"ci": "npm run format && npm run test",
"changeset": "changeset",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"prepublishOnly": "npm run ci",
"version": "changeset version",
"release": "changeset publish",
"local-publish": "npm run build && changeset publish && git push --follow-tags"
},
"license": "MIT",
"dependencies": {
"@ai-sdk/anthropic": "^2.0.9",
"@ai-sdk/google": "^2.0.11",
"@ai-sdk/groq": "^2.0.16",
"@ai-sdk/openai": "^2.0.23",
"@anthropic-ai/sdk": "^0.61.0",
"@clack/prompts": "^0.11.0",
"@inkjs/ui": "^2.0.0",
"@modelcontextprotocol/sdk": "^1.17.5",
"ai": "^5.0.30",
"boxen": "^8.0.1",
"chalk": "^5.6.0",
"commander": "^14.0.0",
"dedent": "^1.6.0",
"dotenv": "17.2.2",
"ink": "^6.2.2",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"object-hash": "^3.0.0",
"react": "^19.1.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "^24.3.0",
"@types/object-hash": "^3.0.6",
"@types/react": "^19.1.11",
"husky": "^9.1.7",
"ink-testing-library": "^4.0.0",
"prettier": "^3.6.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/missingstudio/cli.git"
},
"bugs": {
"url": "https://github.com/missingstudio/cli/issues"
},
"homepage": "https://github.com/missingstudio/cli#readme"
}