-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 961 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 961 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
40
41
42
43
{
"name": "@unbox-plus/cli",
"version": "0.21.10",
"author": {
"name": "Unbox Development Team",
"email": "devs@unbox.com.br",
"url": "https://unbox.com.br"
},
"description": "Scaffold a new Unbox storefront (Next.js) from the official template",
"keywords": [
"unbox",
"storefront",
"ecommerce"
],
"license": "SEE LICENSE IN LICENSE.md",
"type": "module",
"bin": {
"create-unbox-store": "./bin/cli.js"
},
"files": [
"bin",
"src",
"template"
],
"engines": {
"node": ">=20.11"
},
"dependencies": {
"prompts": "^2.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/unbox-plus/unbox-cli.git"
},
"bugs": {
"url": "https://github.com/unbox-plus/unbox-cli/issues"
},
"scripts": {
"check:neutro": "node tools/check-template-neutro.mjs",
"release": "node tools/github-release.mjs",
"prepack": "node tools/check-template-neutro.mjs"
}
}