-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 959 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
{
"name": "create-vanilla-kit",
"version": "1.0.0",
"main": "./index.js",
"type": "module",
"scripts": {
"test": "mocha tests/*.js",
"start": "node index.js"
},
"keywords": [
"vanilla",
"javascript",
"vanillakit-cli",
"vanillakit-js",
"vanillakit",
"vanillakit-static",
"vanillakit-express",
"express js"
],
"author": "Muhammad Hanzla",
"license": "MIT",
"description": "A CLI tool for creating VanillaKit projects",
"bin": {
"create-vanilla-kit": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hanzala-h/create-vanilla-kit.git"
},
"bugs": {
"url": "https://github.com/hanzala-h/VanillaKit-Static/issues"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"inquirer": "^10.2.2"
},
"devDependencies": {
"chai": "^5.1.1",
"mocha": "^10.7.3"
}
}