-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 716 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 716 Bytes
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
{
"name": "file-manager-cli",
"version": "1.1.0",
"description": "File Manager CLI using TypeScript and Node",
"main": "src/cli/index.ts",
"type": "module",
"scripts": {
"dev": "node --loader ts-node/esm src/cli/index.ts",
"start": "node dist/cli/index.js",
"build": "tsc",
"test": "jest"
},
"keywords": [
"file-manager",
"cli",
"node",
"typescript"
],
"author": "georgeshani",
"license": "ISC",
"dependencies": {
"chalk": "^5.6.2",
"inquirer": "^13.0.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.10.2",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}