forked from maxGraph/maxGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 938 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"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 \"**/*.ts\"",
"lint:fix": "eslint --fix \"**/*.ts\""
},
"devDependencies": {
"@types/node": "^18.19.50",
"@typescript-eslint/eslint-plugin": "~7.0.2",
"@typescript-eslint/parser": "~7.0.2",
"eslint": "~8.56.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-prettier": "~5.1.3",
"prettier": "~3.1.1",
"typescript": "~5.6.2"
}
}