-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@vesoft-inc/veditor",
"version": "4.4.14",
"description": "svg flow editor",
"main": "./dist/VEditor.js",
"types": "./types/index.d.ts",
"scripts": {
"start": "webpack serve ",
"build:demo": "webpack --mode production --config webpack.config.js",
"build": "webpack --config webpack.config.build.js",
"build:browser": "webpack --env browser=true --config webpack.config.build.js",
"makeDts": "npx -p typescript tsc -p ./dts.json",
"build:all": "npm run build && npm run makeDts && npm run build:browser && npm run build:demo ",
"doc": "typedoc ",
"watch": "webpack --watch --env browser=true --config webpack.config.build.js",
"postpublish": "npx cnpm sync @vesoft-inc/veditor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mizy/VEditor.git"
},
"keywords": [
"svg",
"flow",
"editor"
],
"files": [
"dist",
"types"
],
"dependencies": {
"canvg": "^4.0.0",
"dagre": "^0.8.4",
"gl-matrix": "^3.4.3",
"url-loader": "^4.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/react": "^18.0.17",
"antd": "^3.22.0",
"babel-loader": "^8.0.2",
"babel-plugin-import": "^1.12.0",
"core-js": "^3.18.3",
"css-loader": "^6.7.1",
"fs-extra": "^10.1.0",
"less": "^3.8.1",
"less-loader": "^11.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"tslib": "^2.3.1",
"typedoc": "^0.23.8",
"typescript": "^4.6.3",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"author": "mizy",
"license": "ISC",
"bugs": {
"url": "https://github.com/vesoft-inc/nebula-VEditor/issues"
},
"homepage": "https://github.com/vesoft-inc/nebula-VEditor#readme"
}