-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.57 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.57 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
{
"name": "mcp-connectors",
"version": "0.1.0",
"private": true,
"description": "monorepo for mcp connectors for disco.dev",
"workspaces": ["packages/*", "apps/*"],
"type": "module",
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"start": "turbo run start",
"server": "turbo run spawn",
"dev": "turbo run dev",
"prepare": "husky",
"build": "turbo build",
"test": "turbo test",
"check": "biome check .",
"check:fix": "biome check --fix .",
"typecheck": "turbo typecheck"
},
"dependencies": {
"@stackone/mcp-config-types": "workspace:*",
"@stackone/mcp-connectors": "workspace:*"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/node": "^22.13.5",
"@typescript/native-preview": "^7.0.0-dev.20250815.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.0",
"msw": "^2.10.4",
"tsdown": "^0.14.0",
"turbo": "latest",
"typescript": "^5.9.0",
"unplugin-unused": "^0.5.1",
"vitest": "^3.2.4",
"vitest-mock-extended": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StackOneHQ/mcp-connectors.git"
},
"author": "StackOne",
"license": "Apache-2.0",
"bugs": "https://github.com/StackOneHQ/mcp-connectors/issues",
"homepage": "https://github.com/StackOneHQ/mcp-connectors#readme",
"lint-staged": {
"*": ["biome check --fix --no-errors-on-unmatched"]
},
"packageManager": "bun@1.2.18"
}