-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
47
48
49
50
51
{
"displayName": "PathFinder",
"name": "@disqada/pathfinder",
"version": "3.0.0",
"description": "Easily find files in chosen directories in your project",
"scripts": {
"types": "workspace ./workspace.json -c -t",
"docs": "workspace ./workspace.json -c -t -d",
"format": "prettier . --write --ignore-path .gitignore",
"test": "mocha ./test/**/*.test.js"
},
"type": "module",
"main": "./src/exports.js",
"types": "./types/exports.d.ts",
"exports": {
".": {
"import": "./src/exports.js",
"default": "./src/exports.js",
"types": "./types/exports.d.ts"
}
},
"files": [
"src",
"types",
"LICENSE",
"*.md"
],
"homepage": "https://disqada.github.io/PathFinder",
"repository": "github:DisQada/PathFinder",
"bugs": {
"url": "https://github.com/DisQada/PathFinder/issues"
},
"keywords": [
"find",
"finder",
"search",
"path",
"paths",
"directory",
"folder",
"file"
],
"author": "DisQada <hi@disqada.org> (https://links.disqada.org)",
"license": "Apache-2.0",
"devDependencies": {
"@disqada/workspace": "^1.6.2",
"@types/node": "^22.5.5",
"mocha": "^10.7.3",
"prettier": "^3.3.3"
}
}