forked from bptlab/openbpt-modeler-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.66 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.66 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "openbpt-typed-pn-variants-modeler",
"version": "0.0.1",
"description": "Modeler supporting t-PNIDs, OPIDs, and DOPIDs.",
"repository": {
"type": "git",
"url": "https://github.com/bptlab/openbpt-typed-pn-variants-modeler"
},
"author": "Maximilian König",
"license": "MIT",
"keywords": [
"modeler",
"modeling",
"Petri nets",
"diagram-js",
"t-PNIDs",
"OPIDs",
"DOPIDs"
],
"main": "dist/index.js",
"exports": {
"./dist/lib/CustomModeler": "./dist/lib/CustomModeler.js",
"./dist/lib/NavigatedViewer": "./dist/lib/NavigatedViewer.js",
"./assets/tpn-js.css": "./assets/tpn-js.css"
},
"files": [
"assets",
"dist",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"format": "prettier --write .",
"watch": "tsc -w -p tsconfig.json"
},
"dependencies": {
"@bpmn-io/properties-panel": "^3.26.4",
"bpmn-font": "^0.12.1",
"diagram-js": "^15.2.4",
"diagram-js-direct-editing": "^2.1.2",
"form-js": "^1.0.2",
"ids": "^1.0.5",
"inherits": "^2.0.4",
"jquery": "^3.7.1",
"min-dash": "^4.2.1",
"min-dom": "^5.0.0",
"moddle": "^6.2.3",
"moddle-xml": "^10.1.0",
"object-refs": "^0.4.0",
"tiny-svg": "^4.0.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}