Files
lan-manager/web/node_modules/@antv/g6-core/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

99 lines
2.6 KiB
JSON

{
"name": "@antv/g6-core",
"version": "0.8.24",
"description": "A Graph Visualization Framework in JavaScript",
"keywords": [
"antv",
"g6",
"graph",
"graph analysis",
"graph editor",
"graph visualization",
"relational data"
],
"homepage": "https://g6.antv.antgroup.com/",
"bugs": {
"url": "https://github.com/antvis/g6/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/antvis/g6"
},
"license": "MIT",
"author": "https://github.com/orgs/antvis/people",
"files": [
"package.json",
"es",
"lib",
"dist",
"LICENSE",
"README.md"
],
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged & npm run test"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint-staged:js"
]
},
"dependencies": {
"@antv/algorithm": "^0.1.26",
"@antv/dom-util": "^2.0.1",
"@antv/event-emitter": "~0.1.0",
"@antv/g-base": "^0.5.1",
"@antv/g-math": "^0.1.1",
"@antv/matrix-util": "^3.1.0-beta.3",
"@antv/path-util": "^2.0.3",
"@antv/util": "~2.0.5",
"ml-matrix": "^6.5.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@antv/g-canvas": "^0.5.2",
"@antv/g-svg": "^0.5.2",
"@babel/core": "^7.7.7",
"@turf/turf": "^5.1.6",
"@types/jest": "^25.2.1",
"@types/node": "20.10.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@umijs/fabric": "^2.0.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"eslint": "^7.7.0",
"event-simulate": "~1.0.0",
"father": "^2.29.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-electron": "^0.1.12",
"jest-extended": "^0.11.2",
"lint-staged": "^10.2.11",
"pre-commit": "^1.2.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-loader": "^7.0.3",
"typescript": "^5.3.2",
"stats-js": "^1.0.1"
},
"scripts": {
"start": "father build --watch",
"build": "npm run clean && father build",
"ci": "npm run build && npm run coverage",
"clean": "rimraf es lib",
"coverage": "jest --coverage",
"doc": "rimraf apis && typedoc",
"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/graph/graph-spec.ts",
"lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx",
"watch": "father build -w"
}
}