-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.85 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
{
"name": "n8n-nodes-opencode",
"version": "1.0.0",
"description": "n8n community node for OpenCode AI chat model integration",
"keywords": [
"n8n-community-node-package",
"n8n",
"opencode",
"ai",
"chat",
"langchain"
],
"license": "MIT",
"homepage": "https://github.com/ssccio/n8n-nodes-opencode",
"author": {
"name": "Ken Trenkelbach",
"email": "ken@sscc.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssccio/n8n-nodes-opencode.git"
},
"main": "index.js",
"scripts": {
"build": "tsc && npm run copy-icons",
"copy-icons": "cp nodes/LmChatOpenCode/opencode.svg dist/nodes/LmChatOpenCode/",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials",
"lintfix": "eslint nodes credentials --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:integration": "RUN_INTEGRATION_TESTS=true jest tests/integration.test.ts",
"test:mock-server": "ts-node tests/mock-server.ts",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run lint && npm test"
},
"files": [
"dist",
"credentials"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/OpenCodeApi.credentials.js"
],
"nodes": [
"dist/nodes/LmChatOpenCode/LmChatOpenCode.node.js"
]
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-plugin-n8n-nodes-base": "^1.16.1",
"jest": "^29.7.0",
"prettier": "^3.2.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"dependencies": {
"@langchain/core": "^0.3.28"
}
}