maxGraph/package.json

36 lines
991 B
JSON

{
"name": "maxgraph",
"license": "Apache-2.0",
"private": true,
"description": "maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
"homepage": "https://github.com/maxGraph/maxGraph",
"repository": {
"type": "git",
"url": "git+https://github.com/maxGraph/maxGraph"
},
"bugs": {
"url": "https://github.com/maxGraph/maxGraph/issues"
},
"workspaces": [
"./packages/*"
],
"scripts": {
"dev": "node ./scripts/dev",
"lint": "eslint packages/**/**.ts",
"lint:fix": "eslint --fix packages/**/**.ts",
"prettier": "prettier --write packages/*/src/**/*.ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.7.1",
"typescript": "^4.9.5"
},
"overrides": {
"@types/node": "^16.18.0"
}
}