-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 933 Bytes
/
package.json
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
{
"name": "findext",
"version": "0.1.1",
"description": "Find files in your OS selected by it's extension",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"findext": "bin/findext"
},
"scripts": {
"prepare": "tsc",
"prestart": "tsc",
"start": "./bin/findext"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denidiasjr/findext.git"
},
"keywords": [
"cli",
"findext"
],
"author": "Deni Junior",
"license": "ISC",
"bugs": {
"url": "https://github.com/denidiasjr/findext/issues"
},
"homepage": "https://github.com/denidiasjr/findext#readme",
"dependencies": {
"esm": "^3.2.25",
"minimist": "^1.2.6"
},
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "^18.7.13",
"typescript": "^4.8.2"
}
}