mirror of https://github.com/artf/grapesjs.git
nocodeframeworkdrag-and-dropsite-buildersite-generatortemplate-builderui-builderweb-builderweb-builder-frameworkwebsite-builderno-codepage-builder
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.2 KiB
51 lines
1.2 KiB
{
|
|
"name": "grapesjs-cli",
|
|
"version": "4.1.3",
|
|
"description": "GrapesJS CLI tool for the plugin development",
|
|
"bin": {
|
|
"grapesjs-cli": "dist/cli.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "BUILD_MODE=production webpack --config ./webpack.cli.ts",
|
|
"build:watch": "webpack --config ./webpack.cli.ts --watch",
|
|
"lint": "eslint src",
|
|
"patch": "npm version patch -m 'Bump v%s'",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/GrapesJS/grapesjs.git"
|
|
},
|
|
"keywords": [
|
|
"grapesjs",
|
|
"plugin",
|
|
"dev",
|
|
"cli"
|
|
],
|
|
"author": "Artur Arseniev",
|
|
"license": "BSD-3-Clause",
|
|
"dependencies": {
|
|
"chalk": "^4.1.2",
|
|
"core-js": "^3.27.2",
|
|
"dts-bundle-generator": "^8.0.1",
|
|
"html-webpack-plugin": "^5.5.0",
|
|
"inquirer": "^8.2.5",
|
|
"listr": "^0.14.3",
|
|
"lodash.template": "^4.5.0",
|
|
"rimraf": "^4.1.2",
|
|
"spdx-license-list": "^6.6.0",
|
|
"webpack": "^5.94.0",
|
|
"webpack-cli": "^5.0.1",
|
|
"webpack-dev-server": "^4.11.1",
|
|
"yargs": "^17.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/webpack-node-externals": "^3.0.0",
|
|
"copy-webpack-plugin": "^11.0.0",
|
|
"fork-ts-checker-webpack-plugin": "^8.0.0",
|
|
"webpack-node-externals": "^3.0.0"
|
|
}
|
|
}
|
|
|