-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.39 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.39 KB
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": "petrinet-io",
"version": "0.2.0",
"description": "Petri net modeling & simulation viewer",
"main": "dist/petrinet-io.umd.js",
"exports": {
".": {
"import": "./dist/petrinet-io.umd.js",
"require": "./dist/petrinet-io.umd.js"
}
},
"browser": "dist/petrinet-io.umd.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"license": "Apache-2.0",
"sideEffects": ["**/*.css"],
"scripts": {
"dev": "webpack serve --mode development --open",
"build": "webpack --mode production --config webpack.config.js",
"start": "npm run dev",
"static": "npm run build",
"deploy": "npm run static && gh-pages -d dist",
"build:lib": "webpack --mode production --config webpack.lib.config.js"
},
"dependencies": {
"diagram-js": "^15.2.4",
"diagram-js-direct-editing": "^3.2.0",
"diagram-js-grid": "^1.1.0",
"jspdf": "^3.0.4",
"svg2pdf.js": "^2.6.0",
"tiny-svg": "^4.1.3"
},
"peerDependencies": {
"@fortawesome/fontawesome-free": "^7.1.0",
"bpmn-font": "^0.12.1"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^7.1.0",
"bpmn-font": "^0.12.1",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"gh-pages": "^6.3.0",
"html-webpack-plugin": "^5.6.5",
"style-loader": "^4.0.0",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
}
}