@falkordb/text-to-cypher 0.1.1 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +17 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@falkordb/text-to-cypher",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Node.js bindings for FalkorDB text-to-cypher library - Convert natural language to Cypher queries",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -27,14 +27,15 @@
|
|
|
27
27
|
"napi": {
|
|
28
28
|
"name": "text-to-cypher",
|
|
29
29
|
"triples": {
|
|
30
|
-
"defaults": true,
|
|
31
30
|
"additional": [
|
|
32
|
-
"x86_64-
|
|
31
|
+
"x86_64-apple-darwin",
|
|
32
|
+
"aarch64-apple-darwin",
|
|
33
|
+
"x86_64-pc-windows-msvc",
|
|
34
|
+
"x86_64-unknown-linux-gnu",
|
|
33
35
|
"aarch64-unknown-linux-gnu",
|
|
36
|
+
"x86_64-unknown-linux-musl",
|
|
34
37
|
"aarch64-unknown-linux-musl",
|
|
35
|
-
|
|
36
|
-
"x86_64-apple-darwin",
|
|
37
|
-
"x86_64-pc-windows-msvc"
|
|
38
|
+
"universal-apple-darwin"
|
|
38
39
|
]
|
|
39
40
|
}
|
|
40
41
|
},
|
|
@@ -45,7 +46,8 @@
|
|
|
45
46
|
"artifacts": "napi artifacts",
|
|
46
47
|
"build": "napi build --platform --release",
|
|
47
48
|
"build:debug": "napi build --platform",
|
|
48
|
-
"
|
|
49
|
+
"create-npm-packages": "node scripts/create-npm-packages.js",
|
|
50
|
+
"publish-npm-packages": "node scripts/publish-npm-packages.js",
|
|
49
51
|
"test": "vitest run",
|
|
50
52
|
"test:watch": "vitest",
|
|
51
53
|
"test:coverage": "vitest run --coverage",
|
|
@@ -73,12 +75,12 @@
|
|
|
73
75
|
],
|
|
74
76
|
"packageManager": "npm@9.6.7",
|
|
75
77
|
"optionalDependencies": {
|
|
76
|
-
"@falkordb/text-to-cypher-win32-x64-msvc": "0.1.
|
|
77
|
-
"@falkordb/text-to-cypher-darwin-x64": "0.1.
|
|
78
|
-
"@falkordb/text-to-cypher-linux-x64-gnu": "0.1.
|
|
79
|
-
"@falkordb/text-to-cypher-
|
|
80
|
-
"@falkordb/text-to-cypher-linux-arm64-gnu": "0.1.
|
|
81
|
-
"@falkordb/text-to-cypher-linux-
|
|
82
|
-
"@falkordb/text-to-cypher-
|
|
78
|
+
"@falkordb/text-to-cypher-win32-x64-msvc": "^0.1.0",
|
|
79
|
+
"@falkordb/text-to-cypher-darwin-x64": "^0.1.0",
|
|
80
|
+
"@falkordb/text-to-cypher-linux-x64-gnu": "^0.1.0",
|
|
81
|
+
"@falkordb/text-to-cypher-darwin-arm64": "^0.1.0",
|
|
82
|
+
"@falkordb/text-to-cypher-linux-arm64-gnu": "^0.1.0",
|
|
83
|
+
"@falkordb/text-to-cypher-linux-x64-musl": "^0.1.0",
|
|
84
|
+
"@falkordb/text-to-cypher-linux-arm64-musl": "^0.1.0"
|
|
83
85
|
}
|
|
84
|
-
}
|
|
86
|
+
}
|