2021-04-15 04:09:10 +00:00
|
|
|
{
|
2021-09-07 09:07:27 +00:00
|
|
|
"name": "@maxgraph/core",
|
2022-07-05 06:08:25 +00:00
|
|
|
"license": "Apache-2.0",
|
2023-09-15 10:31:22 +00:00
|
|
|
"private": false,
|
2024-01-20 16:08:26 +00:00
|
|
|
"version": "0.7.0",
|
2022-07-05 06:08:25 +00:00
|
|
|
"description": "maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
|
2023-07-07 05:39:30 +00:00
|
|
|
"keywords": [
|
|
|
|
"browser",
|
|
|
|
"canvas",
|
|
|
|
"diagram",
|
|
|
|
"graph",
|
|
|
|
"svg"
|
|
|
|
],
|
2023-12-03 15:51:40 +00:00
|
|
|
"module": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
2024-01-18 06:44:23 +00:00
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"import": {
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"default": "./dist/index.js"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"./css/*": "./css/*",
|
|
|
|
"./images/*": "./images/*",
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2021-09-07 09:07:27 +00:00
|
|
|
"files": [
|
2023-07-13 10:25:10 +00:00
|
|
|
"css",
|
|
|
|
"dist",
|
|
|
|
"images"
|
2021-09-07 09:07:27 +00:00
|
|
|
],
|
2022-07-05 06:08:25 +00:00
|
|
|
"homepage": "https://github.com/maxGraph/maxGraph",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/maxGraph/maxGraph"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/maxGraph/maxGraph/issues"
|
|
|
|
},
|
2021-04-15 04:09:10 +00:00
|
|
|
"scripts": {
|
2023-12-03 20:50:14 +00:00
|
|
|
"clean": "rimraf dist",
|
2023-10-12 21:41:37 +00:00
|
|
|
"dev": "tsc --watch",
|
2023-12-03 15:51:40 +00:00
|
|
|
"build": "tsc --version && tsc",
|
2023-01-09 15:03:52 +00:00
|
|
|
"docs:api": "typedoc src/index.ts",
|
2023-12-03 20:50:14 +00:00
|
|
|
"prepack": "run-s clean build",
|
2023-12-10 09:22:07 +00:00
|
|
|
"test": "jest --runInBand"
|
2021-04-15 04:09:10 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-12-16 15:51:51 +00:00
|
|
|
"jest": "^29.3.1",
|
|
|
|
"jest-environment-jsdom": "^29.3.1",
|
|
|
|
"npm-run-all": "~4.1.5",
|
2023-12-03 20:50:14 +00:00
|
|
|
"rimraf": "~5.0.5",
|
2023-04-04 07:17:39 +00:00
|
|
|
"ts-jest": "^29.0.3",
|
2023-12-03 15:51:40 +00:00
|
|
|
"typedoc": "^0.23.21",
|
2023-04-04 07:17:39 +00:00
|
|
|
"typescript": "^4.9.5"
|
2022-01-08 01:49:35 +00:00
|
|
|
},
|
|
|
|
"sideEffects": true
|
2021-04-15 04:09:10 +00:00
|
|
|
}
|