Files
lan-manager/web/node_modules/@antv/g6-plugin/package.json
openclaw 0a5f6a8047 Initial commit: Lan-manager project code
- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs

Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
2026-04-20 00:52:58 +08:00

67 lines
1.7 KiB
JSON

{
"name": "@antv/g6-plugin",
"version": "0.8.25",
"description": "G6 Plugin",
"main": "lib/index.js",
"module": "es/index.js",
"dependencies": {
"@antv/dom-util": "^2.0.2",
"@antv/g-base": "^0.5.1",
"@antv/g-canvas": "^0.5.2",
"@antv/g-svg": "^0.5.2",
"@antv/matrix-util": "^3.1.0-beta.3",
"@antv/scale": "^0.3.4",
"@antv/util": "^2.0.9",
"@antv/path-util": "^2.0.3",
"insert-css": "^2.0.0",
"@antv/g6-element": "0.8.25",
"@antv/g6-core": "0.8.24"
},
"sideEffects": false,
"author": "",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint-staged:js",
"prettier --write"
],
"**/*.{less,md,json}": [
"prettier --write"
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^26.0.18",
"@umijs/fabric": "^2.0.0",
"event-simulate": "^1.0.1",
"father": "^2.30.0",
"jest": "^26.6.3",
"jquery": "^3.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4"
},
"peerDependencies": {
"@antv/g6": "4.8.25"
},
"repository": "https://github.com/antvis/G6.git",
"scripts": {
"build": "npm run clean && father build",
"ci": "npm run build && npm run coverage",
"clean": "rimraf es esm lib dist",
"coverage": "jest --coverage",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --format=pretty \"./\"",
"lint:src": "eslint --ext .ts --format=pretty \"./src\"",
"prettier": "prettier -c --write \"**/*\"",
"test": "jest",
"test-live": "DEBUG_MODE=1 jest --watch ./tests/unit/timebar-spec.ts",
"lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx",
"watch": "father build -w"
}
}