-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.66 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.66 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
{
"name": "@makehq/sdk",
"version": "1.3.0",
"description": "Make TypeScript SDK",
"license": "MIT",
"author": "Make",
"repository": {
"type": "git",
"url": "git+https://github.com/integromat/make-typescript-sdk.git"
},
"homepage": "https://www.make.com",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.cts",
"scripts": {
"watch": "tsc -w",
"build": "tsup",
"build:docs": "typedoc src/index.ts",
"build:version": "node scripts/build-version.mjs",
"test": "jest --coverage --coverageReporters=\"text\" --runInBand --forceExit --verbose false --testMatch \"**/test/**/*.spec.ts\"",
"test:integration": "jest --coverage --coverageReporters=\"text\" --runInBand --forceExit --verbose false --testMatch \"**/test/**/*.integration.test.ts\"",
"publish:jsr": "npx jsr publish --allow-dirty",
"lint": "tsc && eslint --quiet .",
"format": "npx prettier . --write",
"inspector": "npx @modelcontextprotocol/inspector scripts/run-mcp-server.mjs"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./tools": {
"import": {
"types": "./dist/tools.d.ts",
"default": "./dist/tools.js"
},
"require": {
"types": "./dist/tools.d.cts",
"default": "./dist/tools.cjs"
}
},
"./mcp": {
"import": {
"types": "./dist/mcp.d.ts",
"default": "./dist/mcp.js"
},
"require": {
"types": "./dist/mcp.d.cts",
"default": "./dist/mcp.cjs"
}
}
},
"engines": {
"node": ">=20"
},
"files": [
"dist"
],
"devDependencies": {
"@eslint/js": "^9.22.0",
"@jest/globals": "^29.7.0",
"@modelcontextprotocol/sdk": "^1.17.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"dotenv": "^16.4.7",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-jest": "^28.11.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typedoc": "^0.28.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
}
}