-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.02 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "temp-dir-cli",
"version": "1.3.2",
"description": "CLI tool for creating temporary directory and opening explorer.",
"keywords": [
"cli",
"tool",
"utility",
"qol",
"temp",
"temporary",
"directory",
"folder",
"mkdir",
"mkdirtemp",
"explorer",
"finder",
"open"
],
"repository": "github:soags/temp-dir-cli",
"license": "MIT",
"author": "soags",
"main": "dist/index.js",
"bin": {
"tempdir": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"commander": "^12.1.0",
"date-fns": "^3.6.0"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/node": "^20.14.11",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.8.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
}
}