-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 962 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
39
40
41
42
43
44
45
46
{
"name": "@anikghosh256/kitty-cli",
"description": "CLI tool for creating kitty component.",
"version": "0.4.1",
"license": "MIT",
"bin": {
"kitty-cli": "kitty.js",
"kitty": "kitty.js"
},
"author": {
"name": "Anik Ghosh",
"email": "[email protected]",
"url": "https://github.com/anikghosh256"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anikghosh256/kitty-cli.git"
},
"bugs": {
"url": "https://github.com/anikghosh256/kitty-cli/issues"
},
"homepage": "https://github.com/anikghosh256/kitty-cli#readme",
"keywords": [
"kitty-cli",
"Anik Ghosh",
"template compiler",
"project component generator"
],
"files": [
"kitty.js",
"cmds",
"templates",
"helpers"
],
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\""
},
"dependencies": {
"@anikghosh256/compile-template": "^1.4.0",
"chalk": "^4.1.2",
"yargs": "^17.7.1"
},
"devDependencies": {
"prettier": "^2.8.4"
}
}