ts-graphviz 0.0.0-pr956-20240225073457 → 0.0.0-pr956-20240225091623

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/CHANGELOG.md +15 -0
  2. package/package.json +40 -33
package/CHANGELOG.md ADDED
@@ -0,0 +1,15 @@
1
+ # ts-graphviz
2
+
3
+ ## 0.0.0-pr956-20240225091623
4
+
5
+ ### Major Changes
6
+
7
+ - [`6b2f0e8`](https://github.com/ts-graphviz/ts-graphviz/commit/6b2f0e8349605b4fe0dd950147ba3a8285b24b24) Thanks [@kamiazya](https://github.com/kamiazya)! - Release v2.0.0
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`6b2f0e8`](https://github.com/ts-graphviz/ts-graphviz/commit/6b2f0e8349605b4fe0dd950147ba3a8285b24b24)]:
12
+ - @ts-graphviz/adapter@0.0.0-pr956-20240225091623
13
+ - @ts-graphviz/common@0.0.0-pr956-20240225091623
14
+ - @ts-graphviz/core@0.0.0-pr956-20240225091623
15
+ - @ts-graphviz/ast@0.0.0-pr956-20240225091623
package/package.json CHANGED
@@ -1,39 +1,33 @@
1
1
  {
2
2
  "name": "ts-graphviz",
3
- "version": "0.0.0-pr956-20240225073457",
4
- "author": "kamiazya <yuki@kamiazya.tech>",
3
+ "version": "0.0.0-pr956-20240225091623",
5
4
  "description": "Graphviz library for TypeScript.",
6
- "homepage": "https://ts-graphviz.github.io/ts-graphviz/",
7
- "type": "module",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/ts-graphviz/ts-graphviz.git",
11
- "directory": "packages/ts-graphviz"
12
- },
13
- "publishConfig": {
14
- "access": "public",
15
- "provenance": true
16
- },
17
5
  "keywords": [
18
6
  "graphviz",
19
7
  "dot"
20
8
  ],
9
+ "homepage": "https://ts-graphviz.github.io/ts-graphviz/",
21
10
  "bugs": {
22
11
  "url": "https://github.com/ts-graphviz/ts-graphviz/issues"
23
12
  },
24
- "funding": {
25
- "type": "github",
26
- "url": "https://github.com/sponsors/ts-graphviz"
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/ts-graphviz/ts-graphviz.git",
16
+ "directory": "packages/ts-graphviz"
27
17
  },
28
- "files": [
29
- "lib",
30
- "media",
31
- "README.md",
32
- "LICENSE"
18
+ "funding": [
19
+ {
20
+ "type": "github",
21
+ "url": "https://github.com/sponsors/ts-graphviz"
22
+ },
23
+ {
24
+ "type": "opencollective",
25
+ "url": "https://opencollective.com/ts-graphviz"
26
+ }
33
27
  ],
34
- "main": "./lib/ts-graphviz.cjs",
35
- "module": "./lib/ts-graphviz.js",
36
- "types": "lib/ts-graphviz.d.ts",
28
+ "license": "MIT",
29
+ "author": "kamiazya <yuki@kamiazya.tech>",
30
+ "type": "module",
37
31
  "exports": {
38
32
  ".": {
39
33
  "require": {
@@ -57,16 +51,21 @@
57
51
  },
58
52
  "./package.json": "./package.json"
59
53
  },
60
- "license": "MIT",
61
- "engines": {
62
- "node": ">=18"
63
- },
64
- "runkitExampleFilename": "example/runkit.cjs",
54
+ "main": "./lib/ts-graphviz.cjs",
55
+ "module": "./lib/ts-graphviz.js",
56
+ "types": "lib/ts-graphviz.d.ts",
57
+ "files": [
58
+ "lib",
59
+ "media",
60
+ "README.md",
61
+ "CHANGELOG.md",
62
+ "LICENSE"
63
+ ],
65
64
  "dependencies": {
66
- "@ts-graphviz/adapter": "^0.0.0-pr956-20240225073457",
67
- "@ts-graphviz/ast": "^0.0.0-pr956-20240225073457",
68
- "@ts-graphviz/core": "^0.0.0-pr956-20240225073457",
69
- "@ts-graphviz/common": "^0.0.0-pr956-20240225073457"
65
+ "@ts-graphviz/adapter": "^0.0.0-pr956-20240225091623",
66
+ "@ts-graphviz/ast": "^0.0.0-pr956-20240225091623",
67
+ "@ts-graphviz/common": "^0.0.0-pr956-20240225091623",
68
+ "@ts-graphviz/core": "^0.0.0-pr956-20240225091623"
70
69
  },
71
70
  "devDependencies": {
72
71
  "peggy": "^3.0.2",
@@ -75,6 +74,14 @@
75
74
  "vite": "^5.1.3",
76
75
  "vite-plugin-dts": "^3.7.2"
77
76
  },
77
+ "engines": {
78
+ "node": ">=18"
79
+ },
80
+ "publishConfig": {
81
+ "access": "public",
82
+ "provenance": true
83
+ },
84
+ "runkitExampleFilename": "example/runkit.cjs",
78
85
  "scripts": {
79
86
  "build": "vite build"
80
87
  }