@eventcatalog/visualiser 0.0.1 → 0.0.2-beta.0
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.
- package/package.json +18 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eventcatalog/visualiser",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2-beta.0",
|
|
4
4
|
"description": "ReactFlow nodes and visualiser components for EventCatalog - framework agnostic",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -16,18 +16,6 @@
|
|
|
16
16
|
"files": [
|
|
17
17
|
"dist"
|
|
18
18
|
],
|
|
19
|
-
"scripts": {
|
|
20
|
-
"build": "tsup && pnpm build:css",
|
|
21
|
-
"build:bin": "tsup && pnpm build:css",
|
|
22
|
-
"build:css": "postcss src/styles.css -o dist/styles.css",
|
|
23
|
-
"build:watch": "concurrently \"tsup --watch\" \"postcss src/styles.css -o dist/styles.css --watch\"",
|
|
24
|
-
"dev": "tsup --watch --onSuccess \"pnpm build:css\"",
|
|
25
|
-
"playground": "vite playground --config playground/vite.config.ts",
|
|
26
|
-
"clean": "rimraf dist",
|
|
27
|
-
"typecheck": "tsc --noEmit",
|
|
28
|
-
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
29
|
-
"format:diff": "prettier --check \"src/**/*.{ts,tsx}\""
|
|
30
|
-
},
|
|
31
19
|
"keywords": [
|
|
32
20
|
"eventcatalog",
|
|
33
21
|
"reactflow",
|
|
@@ -35,6 +23,10 @@
|
|
|
35
23
|
"nodes",
|
|
36
24
|
"event-driven-architecture"
|
|
37
25
|
],
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/event-catalog/eventcatalog.git"
|
|
29
|
+
},
|
|
38
30
|
"author": "EventCatalog",
|
|
39
31
|
"license": "MIT",
|
|
40
32
|
"dependencies": {
|
|
@@ -72,5 +64,17 @@
|
|
|
72
64
|
"peerDependencies": {
|
|
73
65
|
"react": ">=18.0.0",
|
|
74
66
|
"react-dom": ">=18.0.0"
|
|
67
|
+
},
|
|
68
|
+
"scripts": {
|
|
69
|
+
"build": "tsup && pnpm build:css",
|
|
70
|
+
"build:bin": "tsup && pnpm build:css",
|
|
71
|
+
"build:css": "postcss src/styles.css -o dist/styles.css",
|
|
72
|
+
"build:watch": "concurrently \"tsup --watch\" \"postcss src/styles.css -o dist/styles.css --watch\"",
|
|
73
|
+
"dev": "tsup --watch --onSuccess \"pnpm build:css\"",
|
|
74
|
+
"playground": "vite playground --config playground/vite.config.ts",
|
|
75
|
+
"clean": "rimraf dist",
|
|
76
|
+
"typecheck": "tsc --noEmit",
|
|
77
|
+
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
78
|
+
"format:diff": "prettier --check \"src/**/*.{ts,tsx}\""
|
|
75
79
|
}
|
|
76
|
-
}
|
|
80
|
+
}
|