-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "config-files-manager",
"description": "A package for managing configuration files from the command line",
"version": "0.1.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/abdulrahmanDev1/config-files-manager/blob/main/README.md",
"repository": {
"url": "git+ssh://[email protected]/abdulrahmandev1/config-files-manager.git"
},
"scripts": {
"lint": "tsc",
"build": "tsup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"config",
"files",
"manager",
"config-files-manager",
"config-files",
"config-manager",
"files-manager"
],
"author": "abdulrahmandev1",
"license": "MIT",
"dependencies": {
"commander": "^12.0.0",
"figlet": "^1.7.0",
"colors-cli": "^1.0.33"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/figlet": "^1.5.8",
"@types/node": "^20.12.11",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"bin": {
"cfm": "dist/index.js"
}
}