-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 886 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 886 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
34
35
36
37
38
39
{
"name": "@kourosh-alasti/cli-tool",
"version": "1.1.6",
"description": "CLI Tools commonly used by AlastiSolutions",
"main": "index.js",
"type": "module",
"repository": "https://github.com/alastisolutions/cli-tool",
"scripts": {
"compile": "npx tsc",
"test": "node ./dist/index.js",
"prepare": "husky"
},
"keywords": [
"nextjs",
"typescript",
"react",
"vite",
"tailwindcss"
],
"author": "Kourosh Alasti <coding@kouroshalasti.com>",
"license": "ISC",
"dependencies": {
"@types/node": "^20.12.7",
"chalk": "^5.3.0",
"chalk-animation": "^2.0.3",
"figlet": "^1.7.0",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.20",
"nanospinner": "^1.1.0",
"typescript": "^5.4.5"
},
"bin": {
"cli-tool": "dist/index.js"
},
"devDependencies": {
"husky": "^9.0.11",
"ts-node": "^10.9.2"
}
}