-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (52 loc) · 1.6 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@graph/composition-api",
"description": "building web with composite api",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"build:dev": "node scripts/build.js NODE_ENV=development",
"build:prod": "node scripts/build.js NODE_ENV=production",
"release": "node scripts/release.js",
"docs:dev": "vitepress dev docs --host",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwyGithub/maxGraph-composition-api.git"
},
"keywords": [
"mxgraph",
"mxGraph",
"graph",
"maxGraph",
"maxgraph"
],
"author": "jiangwy",
"license": "ISC",
"bugs": {
"url": "https://github.com/jwyGithub/maxGraph-composition-api/issues"
},
"homepage": "https://github.com/jwyGithub/maxGraph-composition-api#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@types/node": "^18.11.9",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"execa": "5.0.0",
"prettier": "^2.8.0",
"rollup": "^2.78.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.56.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vitepress": "1.0.0-alpha.29"
},
"sideEffects": false,
"dependencies": {
"@maxgraph/core": "^0.1.0"
}
}