-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.97 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
{
"name": "@nodetool-ai/integration-nodes",
"version": "0.7.0-rc.40",
"description": "NodeTool external-API integration nodes — Google Workspace, mail, secrets, messaging triggers, ComfyUI, kie",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "node ../../scripts/build-typescript-workspace.mjs",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"dependencies": {
"@comfyorg/sdk": "0.1.9",
"@nodetool-ai/kie-nodes": "*",
"@nodetool-ai/node-sdk": "*",
"@nodetool-ai/nodes-utils": "*",
"@nodetool-ai/protocol": "*",
"@nodetool-ai/runtime": "*",
"js-yaml": "^4.3.2"
},
"devDependencies": {
"@nodetool-ai/core-nodes": "*",
"@nodetool-ai/data-nodes": "*",
"@nodetool-ai/llm-nodes": "*",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"typescript": "^5.7.2",
"vitest": "^5.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./nodes/*": {
"types": "./dist/nodes/*.d.ts",
"import": "./dist/nodes/*.js",
"default": "./dist/nodes/*.js"
},
"./lib/*": {
"types": "./dist/lib/*.d.ts",
"import": "./dist/lib/*.js",
"default": "./dist/lib/*.js"
}
},
"license": "MIT",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/nodetool-ai/nodetool.git",
"directory": "packages/integration-nodes"
},
"homepage": "https://nodetool.ai",
"bugs": {
"url": "https://github.com/nodetool-ai/nodetool/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"nodetool",
"ai",
"workflow",
"workflow-automation",
"typescript",
"ai-nodes",
"no-code",
"visual-programming",
"workflow-nodes",
"http",
"graphql",
"integrations",
"api"
]
}