@node-cli/search 4.1.0 → 4.1.2
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/search.js +0 -0
- package/package.json +57 -56
package/dist/search.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,57 +1,58 @@
|
|
|
1
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
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
}
|
|
2
|
+
"name": "@node-cli/search",
|
|
3
|
+
"version": "4.1.2",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"author": "Arno Versini",
|
|
6
|
+
"description": "Search for files in a directory",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/versini-org/node-cli.git",
|
|
10
|
+
"directory": "packages/search"
|
|
11
|
+
},
|
|
12
|
+
"type": "module",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"exports": "./dist/core.js",
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=22"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"fs-extra": "11.4.0",
|
|
24
|
+
"kleur": "4.1.5",
|
|
25
|
+
"micromatch": "4.0.8",
|
|
26
|
+
"plur": "6.0.0",
|
|
27
|
+
"pretty-ms": "9.3.0",
|
|
28
|
+
"uuid": "14.0.2",
|
|
29
|
+
"@node-cli/logger": "2.1.1",
|
|
30
|
+
"@node-cli/parser": "3.1.1",
|
|
31
|
+
"@node-cli/perf": "2.1.1",
|
|
32
|
+
"@node-cli/run": "2.1.2"
|
|
33
|
+
},
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@vitest/coverage-v8": "4.1.11",
|
|
39
|
+
"vitest": "4.1.11"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "npm-run-all --serial clean build:types build:js build:barrel",
|
|
43
|
+
"build:barrel": "barrelsby --delete --directory dist --pattern \"**/*.d.ts\" --name \"index.d\"",
|
|
44
|
+
"build:js": "swc --strip-leading-paths --source-maps --out-dir dist src",
|
|
45
|
+
"build:types": "tsc",
|
|
46
|
+
"clean": "rimraf dist types coverage",
|
|
47
|
+
"comments:fix": "comments --merge-line-comments 'src/**/*.ts'",
|
|
48
|
+
"lint": "biome lint src",
|
|
49
|
+
"lint:fix": "biome check src --write --no-errors-on-unmatched",
|
|
50
|
+
"test": "vitest run --globals",
|
|
51
|
+
"test:coverage": "vitest run --coverage --globals",
|
|
52
|
+
"test:watch": "npm run test -- --watch",
|
|
53
|
+
"watch": "swc --strip-leading-paths --watch --out-dir dist src"
|
|
54
|
+
},
|
|
55
|
+
"bin": {
|
|
56
|
+
"search": "dist/search.js"
|
|
57
|
+
}
|
|
58
|
+
}
|