@alint-js/tools-fs 0.0.28 → 0.0.30
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.d.mts +9 -1
- package/package.json +5 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
//#region ../core/dist/types-CR_Grd6q.d.mts
|
|
2
|
+
/** Agent-agnostic tool definition. Each adapter translates it to its framework's tool format. */
|
|
3
|
+
interface AgentTool {
|
|
4
|
+
description: string;
|
|
5
|
+
execute: (input: unknown) => Promise<unknown> | unknown;
|
|
6
|
+
name: string;
|
|
7
|
+
parameters: Record<string, unknown>;
|
|
8
|
+
}
|
|
9
|
+
//#endregion
|
|
2
10
|
//#region src/list.d.ts
|
|
3
11
|
declare const DEFAULT_IGNORE_PATTERNS: readonly string[];
|
|
4
12
|
interface ListFilesOptions {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alint-js/tools-fs",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.30",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"types": "./dist/index.d.mts",
|
|
@@ -13,8 +13,10 @@
|
|
|
13
13
|
"dist"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"tinyglobby": "^0.2.17"
|
|
17
|
-
|
|
16
|
+
"tinyglobby": "^0.2.17"
|
|
17
|
+
},
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@alint-js/core": "0.0.30"
|
|
18
20
|
},
|
|
19
21
|
"scripts": {
|
|
20
22
|
"build": "tsdown",
|