mirror of
https://gitee.com/antv/g6.git
synced 2024-12-02 11:48:29 +08:00
0248c9c940
* chore: config changeset * chore: fix cli deps version * chore: add publish script * chore: update version, add changelog * chore: update changeset config * chore: update publish script * chore: update g6-cli * chore: update version before publish
47 lines
945 B
JSON
47 lines
945 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"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
}
|
|
}
|