- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
117 lines
3.1 KiB
JSON
117 lines
3.1 KiB
JSON
{
|
|
"name": "@antv/layout",
|
|
"version": "0.3.25",
|
|
"description": "graph layout algorithm",
|
|
"main": "lib/index.js",
|
|
"module": "es/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"unpkg": "dist/layout.min.js",
|
|
"files": [
|
|
"src",
|
|
"es",
|
|
"lib",
|
|
"dist"
|
|
],
|
|
"keywords": [
|
|
"graph",
|
|
"layout",
|
|
"algorithm",
|
|
"antv"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf es lib dist",
|
|
"lint:es": "eslint --ext .js --fix",
|
|
"lint:ts": "tslint -c tslint.json -p tsconfig.json --fix",
|
|
"lint": "npm run lint:ts && npm run lint:es",
|
|
"build:esm": "tsc --module esnext --target es2015 --outDir ./es",
|
|
"build:cjs": "tsc --module commonjs --target es5 --outDir ./lib",
|
|
"build:umd": "webpack --config webpack.config.js --mode production",
|
|
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd",
|
|
"build:watch": "npm build:esm --w",
|
|
"precommit": "lint-staged",
|
|
"release": "release-it",
|
|
"test": "jest",
|
|
"coverage": "jest --coverage",
|
|
"test-live": "DEBUG_MODE=1 jest --watch __tests__/g6/dagre-layer-g6-test.ts"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix"
|
|
],
|
|
"src/**/*.ts": [
|
|
"tslint -c tslint.json -p ./tsconfig.json --fix"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@antv/g-webgpu": "0.7.2",
|
|
"@antv/graphlib": "^1.0.0",
|
|
"@antv/util": "^3.3.2",
|
|
"d3-force": "^2.1.1",
|
|
"d3-quadtree": "^2.0.0",
|
|
"dagre-compound": "^0.0.11",
|
|
"ml-matrix": "6.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@antv/g-webgpu-compiler": "0.7.2",
|
|
"@antv/g6": "^4.0.3",
|
|
"@babel/core": "*",
|
|
"@babel/polyfill": "^7.12.1",
|
|
"@babel/preset-env": "*",
|
|
"@babel/preset-typescript": "*",
|
|
"@types/d3-force": "^2.1.0",
|
|
"@types/d3-quadtree": "^2.0.0",
|
|
"@types/graphlib": "^2.1.8",
|
|
"@types/jest": "^25.2.1",
|
|
"babel-jest": "28.1.3",
|
|
"babel-loader": "^8.2.2",
|
|
"eslint": "^7.11.0",
|
|
"eslint-config-airbnb-base": "^14.0.0",
|
|
"eslint-config-prettier": "^6.7.0",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"jest": "^26.0.1",
|
|
"jest-electron": "^0.1.7",
|
|
"jest-extended": "^0.11.2",
|
|
"lint-staged": "^10.2.2",
|
|
"release-it": "^14.0.1",
|
|
"rimraf": "^3.0.0",
|
|
"ts-jest": "^24.1.0",
|
|
"ts-loader": "^8.0.17",
|
|
"tslint": "^6.1.3",
|
|
"tslint-config-airbnb": "^5.11.2",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"tslint-eslint-rules": "^5.4.0",
|
|
"typescript": "^4.0.3",
|
|
"webpack": "^5.23.0",
|
|
"webpack-bundle-analyzer": "^4.4.0",
|
|
"webpack-cli": "^4.5.0",
|
|
"webpack-dev-server": "^3.11.2"
|
|
},
|
|
"release-it": {
|
|
"git": {
|
|
"commitMessage": ":sparkles: Release ${version}"
|
|
},
|
|
"github": {
|
|
"release": true
|
|
},
|
|
"hooks": {
|
|
"before:init": [
|
|
"yarn run build"
|
|
]
|
|
}
|
|
},
|
|
"contributors": [],
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/antvis/layout",
|
|
"bugs": {
|
|
"url": "https://github.com/antvis/layout/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/antvis/layout.git"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org"
|
|
}
|
|
}
|