-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.15 KB
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
{
"name": "simple-folder-search",
"version": "2.3.0",
"description": "A simple folder search package",
"main": "dist/index.cjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup src/index.ts --format esm,cjs --dts --out-dir dist",
"code": "git pull && npm i && code . && eslint src",
"c": "npm run code"
},
"author": "iTsMaaT",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/iTsMaaT/simple-folder-search.git"
},
"bugs": {
"url": "https://github.com/iTsMaaT/simple-folder-search.git"
},
"homepage": "https://github.com/iTsMaaT/simple-folder-search.git",
"keywords": [
"folder",
"file",
"search",
"find"
],
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"globals": "^15.13.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"fuse.js": "^7.0.0"
}
}