-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "create-juice-app",
"version": "1.0.0",
"description": "An interesting front-end scaffold",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "dist/index.js",
"type": "module",
"module": "dist/index.js",
"scripts": {
"dev": "npx tsup --watch",
"dev:watch": "npx tsup --watch --onSuccess 'node dist/index.js'",
"build": "npx tsup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"create-juice-app": "./dist/esm/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Developer27149/create-funny-app.git"
},
"keywords": [
"CLI",
"Frontend scaffold"
],
"author": "Developer27149",
"license": "MIT",
"bugs": {
"url": "https://github.com/Developer27149/create-funny-app/issues"
},
"homepage": "https://github.com/Developer27149/create-funny-app#readme",
"devDependencies": {
"@types/ascii-art": "^1.4.0",
"@types/chalk": "^2.2.0",
"@types/chalk-animation": "^1.6.1",
"@types/figlet": "^1.5.6",
"@types/gradient-string": "^1.1.2",
"@types/inquirer": "^9.0.3",
"@types/node": "^20.2.5",
"@types/node-fetch": "^2.6.4",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"dependencies": {
"chalk": "^5.2.0",
"chalk-animation": "^2.0.3",
"commander": "^10.0.1",
"download-git-repo": "^3.0.2",
"figlet": "^1.6.0",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.6",
"nanospinner": "^1.1.0",
"node-fetch": "^3.3.1"
}
}