48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"name": "@maxgraph/core",
|
|
"license": "Apache-2.0",
|
|
"private": false,
|
|
"version": "0.4.1",
|
|
"description": "maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
|
|
"keywords": [
|
|
"browser",
|
|
"canvas",
|
|
"diagram",
|
|
"graph",
|
|
"svg"
|
|
],
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"css",
|
|
"dist",
|
|
"images"
|
|
],
|
|
"homepage": "https://github.com/maxGraph/maxGraph",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/maxGraph/maxGraph"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/maxGraph/maxGraph/issues"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"dev": "tsc --watch",
|
|
"build": "tsc --version && tsc",
|
|
"docs:api": "typedoc src/index.ts",
|
|
"prepack": "run-s clean build",
|
|
"test": "jest"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.3.1",
|
|
"jest-environment-jsdom": "^29.3.1",
|
|
"npm-run-all": "~4.1.5",
|
|
"rimraf": "~5.0.5",
|
|
"ts-jest": "^29.0.3",
|
|
"typedoc": "^0.23.21",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"sideEffects": true
|
|
}
|