-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 935 Bytes
/
package.json
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
{
"name": "@smcgann/node-red-cosine-similarity-plus",
"version": "0.0.2",
"description": "Calculates cosine similarity of two vector values in Node-RED",
"keywords": [
"node-red",
"vector",
"cosine",
"similarity",
"distance"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/smcgann99/node-red-cosine-similarity-plus"
},
"author": "S.McGann",
"node-red": {
"version": ">=4.0.0",
"nodes": {
"cosine-similarity-plus": "calculate-cosine.js"
}
},
"private": false,
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/smcgann99/node-red-cosine-similarity-plus/issues"
},
"homepage": "https://github.com/smcgann99/node-red-cosine-similarity-plus#readme",
"main": "calculate-cosine.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}