-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 875 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 875 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
{
"name": "create-shopware6-plugin",
"version": "0.1.11",
"description": "Setup Shopware 6 Plugin via cli",
"main": "src/app.js",
"type": "module",
"scripts": {
"build": "rollup -c"
},
"bin": {
"create-shopware6-plugin": "bin/createPlugin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BuildIT-Consulting/create-shopware6-plugin.git"
},
"keywords": [
"shopware",
"shopware6",
"plugins",
"cli"
],
"author": "BuildIT Consulting",
"license": "MIT",
"bugs": {
"url": "https://github.com/BuildIT-Consulting/create-shopware6-plugin/issues"
},
"homepage": "https://github.com/BuildIT-Consulting/create-shopware6-plugin#readme",
"dependencies": {
"command-line-args": "^5.2.0"
},
"devDependencies": {
"rollup": "^3.10.1",
"rollup-plugin-preserve-shebang": "^1.0.1"
}
}