g6/packages/cli/package.json
Yuxin a31abe4c9e
feat: add scaffold for creating G6 extension (#5749)
* feat: add scaffold for creating G6 extension
2024-05-20 20:16:07 +08:00

43 lines
849 B
JSON

{
"name": "@antv/g6-cli",
"version": "0.0.1",
"description": "Scaffolding Your Extension for G6",
"keywords": [
"antv",
"g6",
"extension",
"template"
],
"repository": "https://github.com/antvis/G6.git",
"license": "MIT",
"author": "yvonneyx",
"type": "module",
"main": "index.js",
"bin": {
"create-g6": "index.js"
},
"files": [
"index.js",
"template-*",
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/lodash": "^4.17.0",
"@types/minimist": "^1.2.5",
"@types/prompts": "^2.4.9",
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"unbuild": "^2.0.0"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
}
}