@ff-labs/fff-node 0.10.5-dev.774d6bc → 0.10.5-nightly.f565d37
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/dist/index.cjs +729 -291
- package/dist/index.cjs.map +1 -14
- package/dist/index.js +617 -174
- package/dist/index.js.map +1 -14
- package/package.json +14 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ff-labs/fff-node",
|
|
3
|
-
"version": "0.10.5-
|
|
3
|
+
"version": "0.10.5-nightly.f565d37",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "High-performance fuzzy file finder for Node.js - perfect for LLM agent tools",
|
|
6
6
|
"type": "module",
|
|
@@ -20,9 +20,8 @@
|
|
|
20
20
|
"dist"
|
|
21
21
|
],
|
|
22
22
|
"scripts": {
|
|
23
|
-
"build": "npm run build:
|
|
24
|
-
"build:
|
|
25
|
-
"build:cjs": "bun build ./src/index.ts --format=cjs --target=node --external ffi-rs --sourcemap=external --outdir dist --entry-naming \"[name].cjs\"",
|
|
23
|
+
"build": "npm run build:bundle && npm run build:types",
|
|
24
|
+
"build:bundle": "tsup src/index.ts --format esm,cjs --platform node --target node18 --external ffi-rs --sourcemap",
|
|
26
25
|
"build:types": "tsc -p tsconfig.build.json",
|
|
27
26
|
"test": "node test/e2e.mjs && node test/watch.mjs",
|
|
28
27
|
"typecheck": "tsc --noEmit"
|
|
@@ -69,17 +68,18 @@
|
|
|
69
68
|
},
|
|
70
69
|
"devDependencies": {
|
|
71
70
|
"typescript": "^5.0.0",
|
|
72
|
-
"@types/node": "^22.0.0"
|
|
71
|
+
"@types/node": "^22.0.0",
|
|
72
|
+
"tsup": "^8.5.0"
|
|
73
73
|
},
|
|
74
74
|
"optionalDependencies": {
|
|
75
|
-
"@ff-labs/fff-bin-android-arm64": "0.10.5-
|
|
76
|
-
"@ff-labs/fff-bin-darwin-arm64": "0.10.5-
|
|
77
|
-
"@ff-labs/fff-bin-darwin-x64": "0.10.5-
|
|
78
|
-
"@ff-labs/fff-bin-linux-arm64-gnu": "0.10.5-
|
|
79
|
-
"@ff-labs/fff-bin-linux-arm64-musl": "0.10.5-
|
|
80
|
-
"@ff-labs/fff-bin-linux-x64-gnu": "0.10.5-
|
|
81
|
-
"@ff-labs/fff-bin-linux-x64-musl": "0.10.5-
|
|
82
|
-
"@ff-labs/fff-bin-win32-arm64": "0.10.5-
|
|
83
|
-
"@ff-labs/fff-bin-win32-x64": "0.10.5-
|
|
75
|
+
"@ff-labs/fff-bin-android-arm64": "0.10.5-nightly.f565d37",
|
|
76
|
+
"@ff-labs/fff-bin-darwin-arm64": "0.10.5-nightly.f565d37",
|
|
77
|
+
"@ff-labs/fff-bin-darwin-x64": "0.10.5-nightly.f565d37",
|
|
78
|
+
"@ff-labs/fff-bin-linux-arm64-gnu": "0.10.5-nightly.f565d37",
|
|
79
|
+
"@ff-labs/fff-bin-linux-arm64-musl": "0.10.5-nightly.f565d37",
|
|
80
|
+
"@ff-labs/fff-bin-linux-x64-gnu": "0.10.5-nightly.f565d37",
|
|
81
|
+
"@ff-labs/fff-bin-linux-x64-musl": "0.10.5-nightly.f565d37",
|
|
82
|
+
"@ff-labs/fff-bin-win32-arm64": "0.10.5-nightly.f565d37",
|
|
83
|
+
"@ff-labs/fff-bin-win32-x64": "0.10.5-nightly.f565d37"
|
|
84
84
|
}
|
|
85
85
|
}
|