-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 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
{
"name": "@dotwee/node-red-supermemory",
"version": "1.0.2",
"description": "Node-RED nodes for interacting with the Supermemory.ai API",
"homepage": "https://github.com/dotWee/node-red-supermemory",
"bugs": {
"url": "https://github.com/dotWee/node-red-supermemory/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotWee/node-red-supermemory.git"
},
"keywords": [
"node-red",
"supermemory.ai",
"supermemory",
"memory",
"ai",
"rag",
"vector",
"search"
],
"author": "Lukas Wolfsteiner",
"license": "WTFPL",
"dependencies": {
"axios": "^1.7.2"
},
"devDependencies": {
"node-red": "^4.0.9",
"node-red-node-test-helper": "^0.3.4",
"nock": "^14.0.4",
"mocha": "^11.2.2",
"should": "^13.2.3"
},
"engines": {
"node": ">=20.0.0"
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"supermemory-config": "src/supermemory-config.js",
"supermemory-add": "src/supermemory-add.js",
"supermemory-search": "src/supermemory-search.js"
}
},
"scripts": {
"test": "mocha \"test/**/*_spec.js\""
},
"publishConfig": {
"access": "public"
}
}