@visuallyjs/bpmn 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +8 -5
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ ## VisuallyJs BPMN
2
+
3
+ VisuallyJs BPMN is a support library for VisuallyJs that provides a set of BPMN2 shapes and icons. You need to be using `@visuallyjs/browser-ui`, or one of its library integrations (`@visuallyjs/browser-ui-angular`, `@visuallyjs/browser-ui-react`, `@visuallyjs/browser-ui-vue` or `@visuallyjs/browser-ui-svelte`) to use this library.
4
+
5
+ ## Documentation
6
+
7
+ See https://visuallyjs.com/docs
8
+
9
+ ## Demonstration
10
+
11
+ See https://visuallyjs.com/demonstrations/bpmn
12
+
13
+
package/package.json CHANGED
@@ -1,18 +1,21 @@
1
1
  {
2
2
  "name": "@visuallyjs/bpmn",
3
- "version": "1.0.0",
4
- "description": "VisuallyJs BPMN for Browser UI renderer, containing icons, shapes and flow definitions.",
3
+ "version": "1.0.1",
4
+ "description": "BPMN support for VisuallyJs, containing icons, shapes and flow definitions.",
5
5
  "module": "js/visuallyjs.bpmn.es.js",
6
6
  "main": "js/visuallyjs.bpmn.cjs.js",
7
7
  "types": "index.d.ts",
8
8
  "files": [
9
9
  "js/visuallyjs.bpmn.es.js",
10
10
  "js/visuallyjs.bpmn.cjs.js",
11
- "**/*.d.ts"
11
+ "**/*.d.ts",
12
+ "README.md"
12
13
  ],
13
14
  "author": "VisuallyJs <hello@visuallyjs.com> (https://visuallyjs.com)",
14
15
  "license": "Commercial",
15
16
  "dependencies": {
16
- "@visuallyjs/browser-ui": "1.0.0"
17
- }
17
+ "@visuallyjs/browser-ui": "1.0.1"
18
+ },
19
+ "homepage": "https://visuallyjs.com/",
20
+ "bugs": "https://github.com/visuallyjs/visuallyjs/issues"
18
21
  }