pareto-graphviz 0.1.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.
Files changed (107) hide show
  1. package/dist/exceptional/serializers/json.d.ts +5 -0
  2. package/dist/exceptional/serializers/json.js +36 -0
  3. package/dist/globals.d.ts +26 -0
  4. package/dist/globals.js +2 -0
  5. package/dist/implementation/algorithms/operations/impure/text/serialize_string.d.ts +1 -0
  6. package/dist/implementation/algorithms/operations/impure/text/serialize_string.js +12 -0
  7. package/dist/implementation/algorithms/transformations/json/fountain_pen_block.d.ts +4 -0
  8. package/dist/implementation/algorithms/transformations/json/fountain_pen_block.js +88 -0
  9. package/dist/implementation/generated/pareto/generic/parse/ast.d.ts +10 -0
  10. package/dist/implementation/generated/pareto/generic/parse/ast.js +245 -0
  11. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.d.ts +13 -0
  12. package/dist/implementation/generated/pareto/generic/parse/astn_parse_generic.js +50 -0
  13. package/dist/implementation/generated/pareto/generic/parse/parse.d.ts +6 -0
  14. package/dist/implementation/generated/pareto/generic/parse/parse.js +66 -0
  15. package/dist/implementation/generated/pareto/generic/parse/string_iterator.d.ts +40 -0
  16. package/dist/implementation/generated/pareto/generic/parse/string_iterator.js +109 -0
  17. package/dist/implementation/generated/pareto/generic/parse/token.d.ts +9 -0
  18. package/dist/implementation/generated/pareto/generic/parse/token.js +519 -0
  19. package/dist/implementation/generated/pareto/generic/resolve.d.ts +109 -0
  20. package/dist/implementation/generated/pareto/generic/resolve.js +276 -0
  21. package/dist/implementation/generated/pareto/generic/serialize.d.ts +4 -0
  22. package/dist/implementation/generated/pareto/generic/serialize.js +93 -0
  23. package/dist/implementation/generated/pareto/generic/unmarshall.d.ts +42 -0
  24. package/dist/implementation/generated/pareto/generic/unmarshall.js +247 -0
  25. package/dist/implementation/generated/pareto/schemas/graphviz/deserialize.d.ts +2 -0
  26. package/dist/implementation/generated/pareto/schemas/graphviz/deserialize.js +30 -0
  27. package/dist/implementation/generated/pareto/schemas/graphviz/marshall.d.ts +2 -0
  28. package/dist/implementation/generated/pareto/schemas/graphviz/marshall.js +42 -0
  29. package/dist/implementation/generated/pareto/schemas/graphviz/serialize.d.ts +2 -0
  30. package/dist/implementation/generated/pareto/schemas/graphviz/serialize.js +33 -0
  31. package/dist/implementation/generated/pareto/schemas/graphviz/unmarshall.d.ts +2 -0
  32. package/dist/implementation/generated/pareto/schemas/graphviz/unmarshall.js +53 -0
  33. package/dist/implementation/generated/pareto/schemas/json/deserialize.d.ts +3 -0
  34. package/dist/implementation/generated/pareto/schemas/json/deserialize.js +32 -0
  35. package/dist/implementation/generated/pareto/schemas/json/marshall.d.ts +3 -0
  36. package/dist/implementation/generated/pareto/schemas/json/marshall.js +110 -0
  37. package/dist/implementation/generated/pareto/schemas/json/serialize.d.ts +3 -0
  38. package/dist/implementation/generated/pareto/schemas/json/serialize.js +37 -0
  39. package/dist/implementation/generated/pareto/schemas/json/unmarshall.d.ts +3 -0
  40. package/dist/implementation/generated/pareto/schemas/json/unmarshall.js +81 -0
  41. package/dist/implementation/transformers/graphviz/fountain_pen.d.ts +4 -0
  42. package/dist/implementation/transformers/graphviz/fountain_pen.js +43 -0
  43. package/dist/index.d.ts +1 -0
  44. package/dist/index.js +5 -0
  45. package/dist/interface/algorithms/operations/impure/text/serialize_string.d.ts +1 -0
  46. package/dist/interface/algorithms/operations/impure/text/serialize_string.js +5 -0
  47. package/dist/interface/algorithms/transformations/json/fountain_pen_block.d.ts +1 -0
  48. package/dist/interface/algorithms/transformations/json/fountain_pen_block.js +5 -0
  49. package/dist/interface/generated/pareto/core/astn_source.d.ts +123 -0
  50. package/dist/interface/generated/pareto/core/astn_source.js +3 -0
  51. package/dist/interface/generated/pareto/core/astn_target.d.ts +186 -0
  52. package/dist/interface/generated/pareto/core/astn_target.js +3 -0
  53. package/dist/interface/generated/pareto/core/parse_result.d.ts +25 -0
  54. package/dist/interface/generated/pareto/core/parse_result.js +3 -0
  55. package/dist/interface/generated/pareto/core/resolve.d.ts +11 -0
  56. package/dist/interface/generated/pareto/core/resolve.js +3 -0
  57. package/dist/interface/generated/pareto/core/resolved.d.ts +117 -0
  58. package/dist/interface/generated/pareto/core/resolved.js +3 -0
  59. package/dist/interface/generated/pareto/core/token.d.ts +49 -0
  60. package/dist/interface/generated/pareto/core/token.js +3 -0
  61. package/dist/interface/generated/pareto/core/unconstrained.d.ts +19 -0
  62. package/dist/interface/generated/pareto/core/unconstrained.js +3 -0
  63. package/dist/interface/generated/pareto/core/unresolved.d.ts +181 -0
  64. package/dist/interface/generated/pareto/core/unresolved.js +3 -0
  65. package/dist/interface/generated/pareto/schemas/graphviz/data_types/resolve.d.ts +1 -0
  66. package/dist/interface/generated/pareto/schemas/graphviz/data_types/resolve.js +7 -0
  67. package/dist/interface/generated/pareto/schemas/graphviz/data_types/source.d.ts +49 -0
  68. package/dist/interface/generated/pareto/schemas/graphviz/data_types/source.js +3 -0
  69. package/dist/interface/generated/pareto/schemas/graphviz/data_types/target.d.ts +49 -0
  70. package/dist/interface/generated/pareto/schemas/graphviz/data_types/target.js +3 -0
  71. package/dist/interface/generated/pareto/schemas/graphviz/deserialize.d.ts +28 -0
  72. package/dist/interface/generated/pareto/schemas/graphviz/deserialize.js +3 -0
  73. package/dist/interface/generated/pareto/schemas/graphviz/marshall.d.ts +33 -0
  74. package/dist/interface/generated/pareto/schemas/graphviz/marshall.js +3 -0
  75. package/dist/interface/generated/pareto/schemas/graphviz/migrate_boilerplate.d.ts +24 -0
  76. package/dist/interface/generated/pareto/schemas/graphviz/migrate_boilerplate.js +3 -0
  77. package/dist/interface/generated/pareto/schemas/graphviz/serialize.d.ts +28 -0
  78. package/dist/interface/generated/pareto/schemas/graphviz/serialize.js +3 -0
  79. package/dist/interface/generated/pareto/schemas/graphviz/unmarshall.d.ts +33 -0
  80. package/dist/interface/generated/pareto/schemas/graphviz/unmarshall.js +3 -0
  81. package/dist/interface/generated/pareto/schemas/graphviz/value_deserializers.d.ts +64 -0
  82. package/dist/interface/generated/pareto/schemas/graphviz/value_deserializers.js +3 -0
  83. package/dist/interface/generated/pareto/schemas/graphviz/value_serializers.d.ts +64 -0
  84. package/dist/interface/generated/pareto/schemas/graphviz/value_serializers.js +3 -0
  85. package/dist/interface/generated/pareto/schemas/json/data_types/resolve.d.ts +1 -0
  86. package/dist/interface/generated/pareto/schemas/json/data_types/resolve.js +7 -0
  87. package/dist/interface/generated/pareto/schemas/json/data_types/source.d.ts +169 -0
  88. package/dist/interface/generated/pareto/schemas/json/data_types/source.js +3 -0
  89. package/dist/interface/generated/pareto/schemas/json/data_types/target.d.ts +169 -0
  90. package/dist/interface/generated/pareto/schemas/json/data_types/target.js +3 -0
  91. package/dist/interface/generated/pareto/schemas/json/deserialize.d.ts +54 -0
  92. package/dist/interface/generated/pareto/schemas/json/deserialize.js +3 -0
  93. package/dist/interface/generated/pareto/schemas/json/marshall.d.ts +63 -0
  94. package/dist/interface/generated/pareto/schemas/json/marshall.js +3 -0
  95. package/dist/interface/generated/pareto/schemas/json/migrate_boilerplate.d.ts +46 -0
  96. package/dist/interface/generated/pareto/schemas/json/migrate_boilerplate.js +3 -0
  97. package/dist/interface/generated/pareto/schemas/json/serialize.d.ts +54 -0
  98. package/dist/interface/generated/pareto/schemas/json/serialize.js +3 -0
  99. package/dist/interface/generated/pareto/schemas/json/unmarshall.d.ts +63 -0
  100. package/dist/interface/generated/pareto/schemas/json/unmarshall.js +3 -0
  101. package/dist/interface/generated/pareto/schemas/json/value_deserializers.d.ts +64 -0
  102. package/dist/interface/generated/pareto/schemas/json/value_deserializers.js +3 -0
  103. package/dist/interface/generated/pareto/schemas/json/value_serializers.d.ts +64 -0
  104. package/dist/interface/generated/pareto/schemas/json/value_serializers.js +3 -0
  105. package/dist/shorthands/json.d.ts +8 -0
  106. package/dist/shorthands/json.js +12 -0
  107. package/package.json +36 -0
@@ -0,0 +1,46 @@
1
+ import * as _i_out from "./data_types/target";
2
+ import * as _i_in from "./data_types/source";
3
+ export type _T_Value = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Value;
4
+ export type _T_Document = ($$_: _i_in._T_Document, $$_p: null) => _i_out._T_Document;
5
+ export type Value = _T_Value;
6
+ export type Document = _T_Document;
7
+ export declare namespace _T_Value {
8
+ namespace CONTEXT {
9
+ }
10
+ type CONTEXT = _i_in._T_Value;
11
+ namespace PARAMS {
12
+ }
13
+ namespace RESULT {
14
+ }
15
+ type RESULT = _i_out._T_Value;
16
+ }
17
+ export declare namespace _T_Document {
18
+ namespace CONTEXT {
19
+ }
20
+ type CONTEXT = _i_in._T_Document;
21
+ namespace PARAMS {
22
+ }
23
+ namespace RESULT {
24
+ }
25
+ type RESULT = _i_out._T_Document;
26
+ }
27
+ export declare namespace Value {
28
+ namespace CONTEXT {
29
+ }
30
+ type CONTEXT = _i_in._T_Value;
31
+ namespace PARAMS {
32
+ }
33
+ namespace RESULT {
34
+ }
35
+ type RESULT = _i_out._T_Value;
36
+ }
37
+ export declare namespace Document {
38
+ namespace CONTEXT {
39
+ }
40
+ type CONTEXT = _i_in._T_Document;
41
+ namespace PARAMS {
42
+ }
43
+ namespace RESULT {
44
+ }
45
+ type RESULT = _i_out._T_Document;
46
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0ZV9ib2lsZXJwbGF0ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL3BhcmV0by9zY2hlbWFzL2pzb24vbWlncmF0ZV9ib2lsZXJwbGF0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,54 @@
1
+ import * as _i_in from "./data_types/source";
2
+ import * as _i_vs from "./value_serializers";
3
+ export type _T_Value = ($$_: _i_in._T_Value, $$_p: {
4
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
5
+ }) => string;
6
+ export type _T_Document = ($$_: _i_in._T_Document, $$_p: {
7
+ readonly 'value serializers': _i_vs._T_Value_Serializers;
8
+ }) => string;
9
+ export type Value = _T_Value;
10
+ export type Document = _T_Document;
11
+ export declare namespace _T_Value {
12
+ namespace CONTEXT {
13
+ }
14
+ type CONTEXT = _i_in._T_Value;
15
+ namespace PARAMS {
16
+ namespace value_serializers {
17
+ }
18
+ type value_serializers = _i_vs._T_Value_Serializers;
19
+ }
20
+ type RESULT = string;
21
+ }
22
+ export declare namespace _T_Document {
23
+ namespace CONTEXT {
24
+ }
25
+ type CONTEXT = _i_in._T_Document;
26
+ namespace PARAMS {
27
+ namespace value_serializers {
28
+ }
29
+ type value_serializers = _i_vs._T_Value_Serializers;
30
+ }
31
+ type RESULT = string;
32
+ }
33
+ export declare namespace Value {
34
+ namespace CONTEXT {
35
+ }
36
+ type CONTEXT = _i_in._T_Value;
37
+ namespace PARAMS {
38
+ namespace value_serializers {
39
+ }
40
+ type value_serializers = _i_vs._T_Value_Serializers;
41
+ }
42
+ type RESULT = string;
43
+ }
44
+ export declare namespace Document {
45
+ namespace CONTEXT {
46
+ }
47
+ type CONTEXT = _i_in._T_Document;
48
+ namespace PARAMS {
49
+ namespace value_serializers {
50
+ }
51
+ type value_serializers = _i_vs._T_Value_Serializers;
52
+ }
53
+ type RESULT = string;
54
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvcGFyZXRvL3NjaGVtYXMvanNvbi9zZXJpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,63 @@
1
+ import * as _i_out from "./data_types/target";
2
+ import * as _i_in from "../../core/astn_source";
3
+ import * as _i_vd from "./value_deserializers";
4
+ export type _T_Value = ($$_: _i_in._T_Value, $$_p: {
5
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
6
+ }) => _i_out._T_Value;
7
+ export type _T_Document = ($$_: _i_in._T_Value, $$_p: {
8
+ readonly 'value deserializers': _i_vd._T_Value_Deserializers;
9
+ }) => _i_out._T_Document;
10
+ export type Value = _T_Value;
11
+ export type Document = _T_Document;
12
+ export declare namespace _T_Value {
13
+ namespace CONTEXT {
14
+ }
15
+ type CONTEXT = _i_in._T_Value;
16
+ namespace PARAMS {
17
+ namespace value_deserializers {
18
+ }
19
+ type value_deserializers = _i_vd._T_Value_Deserializers;
20
+ }
21
+ namespace RESULT {
22
+ }
23
+ type RESULT = _i_out._T_Value;
24
+ }
25
+ export declare namespace _T_Document {
26
+ namespace CONTEXT {
27
+ }
28
+ type CONTEXT = _i_in._T_Value;
29
+ namespace PARAMS {
30
+ namespace value_deserializers {
31
+ }
32
+ type value_deserializers = _i_vd._T_Value_Deserializers;
33
+ }
34
+ namespace RESULT {
35
+ }
36
+ type RESULT = _i_out._T_Document;
37
+ }
38
+ export declare namespace Value {
39
+ namespace CONTEXT {
40
+ }
41
+ type CONTEXT = _i_in._T_Value;
42
+ namespace PARAMS {
43
+ namespace value_deserializers {
44
+ }
45
+ type value_deserializers = _i_vd._T_Value_Deserializers;
46
+ }
47
+ namespace RESULT {
48
+ }
49
+ type RESULT = _i_out._T_Value;
50
+ }
51
+ export declare namespace Document {
52
+ namespace CONTEXT {
53
+ }
54
+ type CONTEXT = _i_in._T_Value;
55
+ namespace PARAMS {
56
+ namespace value_deserializers {
57
+ }
58
+ type value_deserializers = _i_vd._T_Value_Deserializers;
59
+ }
60
+ namespace RESULT {
61
+ }
62
+ type RESULT = _i_out._T_Document;
63
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5tYXJzaGFsbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL3BhcmV0by9zY2hlbWFzL2pzb24vdW5tYXJzaGFsbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,64 @@
1
+ export type _T_Value_Deserializers = {
2
+ readonly 'default number': ($$_: string, $$_p: null) => number;
3
+ readonly 'boolean': ($$_: string, $$_p: null) => boolean;
4
+ readonly 'custom numbers': {
5
+ readonly 'Position': ($$_: string, $$_p: null) => number;
6
+ };
7
+ };
8
+ export type Value_Deserializers = _T_Value_Deserializers;
9
+ export declare namespace _T_Value_Deserializers {
10
+ namespace default_number {
11
+ type CONTEXT = string;
12
+ namespace PARAMS {
13
+ }
14
+ type RESULT = number;
15
+ }
16
+ type default_number = ($$_: string, $$_p: null) => number;
17
+ namespace _boolean {
18
+ type CONTEXT = string;
19
+ namespace PARAMS {
20
+ }
21
+ type RESULT = boolean;
22
+ }
23
+ type _boolean = ($$_: string, $$_p: null) => boolean;
24
+ namespace custom_numbers {
25
+ namespace Position {
26
+ type CONTEXT = string;
27
+ namespace PARAMS {
28
+ }
29
+ type RESULT = number;
30
+ }
31
+ type Position = ($$_: string, $$_p: null) => number;
32
+ }
33
+ type custom_numbers = {
34
+ readonly 'Position': ($$_: string, $$_p: null) => number;
35
+ };
36
+ }
37
+ export declare namespace Value_Deserializers {
38
+ namespace default_number {
39
+ type CONTEXT = string;
40
+ namespace PARAMS {
41
+ }
42
+ type RESULT = number;
43
+ }
44
+ type default_number = ($$_: string, $$_p: null) => number;
45
+ namespace _boolean {
46
+ type CONTEXT = string;
47
+ namespace PARAMS {
48
+ }
49
+ type RESULT = boolean;
50
+ }
51
+ type _boolean = ($$_: string, $$_p: null) => boolean;
52
+ namespace custom_numbers {
53
+ namespace Position {
54
+ type CONTEXT = string;
55
+ namespace PARAMS {
56
+ }
57
+ type RESULT = number;
58
+ }
59
+ type Position = ($$_: string, $$_p: null) => number;
60
+ }
61
+ type custom_numbers = {
62
+ readonly 'Position': ($$_: string, $$_p: null) => number;
63
+ };
64
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdWVfZGVzZXJpYWxpemVycy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL3BhcmV0by9zY2hlbWFzL2pzb24vdmFsdWVfZGVzZXJpYWxpemVycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
@@ -0,0 +1,64 @@
1
+ export type _T_Value_Serializers = {
2
+ readonly 'default number': ($$_: number, $$_p: null) => string;
3
+ readonly 'boolean': ($$_: boolean, $$_p: null) => string;
4
+ readonly 'custom numbers': {
5
+ readonly 'Position': ($$_: number, $$_p: null) => string;
6
+ };
7
+ };
8
+ export type Value_Serializers = _T_Value_Serializers;
9
+ export declare namespace _T_Value_Serializers {
10
+ namespace default_number {
11
+ type CONTEXT = number;
12
+ namespace PARAMS {
13
+ }
14
+ type RESULT = string;
15
+ }
16
+ type default_number = ($$_: number, $$_p: null) => string;
17
+ namespace _boolean {
18
+ type CONTEXT = boolean;
19
+ namespace PARAMS {
20
+ }
21
+ type RESULT = string;
22
+ }
23
+ type _boolean = ($$_: boolean, $$_p: null) => string;
24
+ namespace custom_numbers {
25
+ namespace Position {
26
+ type CONTEXT = number;
27
+ namespace PARAMS {
28
+ }
29
+ type RESULT = string;
30
+ }
31
+ type Position = ($$_: number, $$_p: null) => string;
32
+ }
33
+ type custom_numbers = {
34
+ readonly 'Position': ($$_: number, $$_p: null) => string;
35
+ };
36
+ }
37
+ export declare namespace Value_Serializers {
38
+ namespace default_number {
39
+ type CONTEXT = number;
40
+ namespace PARAMS {
41
+ }
42
+ type RESULT = string;
43
+ }
44
+ type default_number = ($$_: number, $$_p: null) => string;
45
+ namespace _boolean {
46
+ type CONTEXT = boolean;
47
+ namespace PARAMS {
48
+ }
49
+ type RESULT = string;
50
+ }
51
+ type _boolean = ($$_: boolean, $$_p: null) => string;
52
+ namespace custom_numbers {
53
+ namespace Position {
54
+ type CONTEXT = number;
55
+ namespace PARAMS {
56
+ }
57
+ type RESULT = string;
58
+ }
59
+ type Position = ($$_: number, $$_p: null) => string;
60
+ }
61
+ type custom_numbers = {
62
+ readonly 'Position': ($$_: number, $$_p: null) => string;
63
+ };
64
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmFsdWVfc2VyaWFsaXplcnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9wYXJldG8vc2NoZW1hcy9qc29uL3ZhbHVlX3NlcmlhbGl6ZXJzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
@@ -0,0 +1,8 @@
1
+ import * as _out from "../interface/generated/pareto/schemas/json/data_types/target";
2
+ import { Raw_Or_Normal_Dictionary, Raw_Or_Normal_List } from 'exupery-core-data/dist/shorthands/unconstrained';
3
+ export declare namespace v {
4
+ const string: (value: string) => _out.Value;
5
+ const null_: () => _out.Value;
6
+ const object: (members: Raw_Or_Normal_Dictionary<_out.Value.SG._object.SG.dictionary.D>) => _out.Value;
7
+ const array: (elements: Raw_Or_Normal_List<_out.Value.SG.array.L>) => _out.Value;
8
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.v = void 0;
4
+ const unconstrained_1 = require("exupery-core-data/dist/shorthands/unconstrained");
5
+ var v;
6
+ (function (v) {
7
+ v.string = (value) => ['string', value];
8
+ v.null_ = () => ['null', null];
9
+ v.object = (members) => ['object', ['dictionary', (0, unconstrained_1.wrap_dictionary)(members)]];
10
+ v.array = (elements) => ['array', (0, unconstrained_1.wrap_list)(elements)];
11
+ })(v || (exports.v = v = {}));
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoianNvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9zaG9ydGhhbmRzL2pzb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBR0EsbUZBTXdEO0FBRXhELElBQWlCLENBQUMsQ0FpQmpCO0FBakJELFdBQWlCLENBQUM7SUFFRCxRQUFNLEdBQUcsQ0FDbEIsS0FBYSxFQUNILEVBQUUsQ0FBQyxDQUFDLFFBQVEsRUFBRSxLQUFLLENBQUMsQ0FBQTtJQUVyQixPQUFLLEdBQUcsR0FDUCxFQUFFLENBQUMsQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLENBQUE7SUFFbEIsUUFBTSxHQUFHLENBQ2xCLE9BQXdFLEVBQzlELEVBQUUsQ0FBQyxDQUFDLFFBQVEsRUFBRSxDQUFDLFlBQVksRUFBRSxJQUFBLCtCQUFlLEVBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxDQUFBO0lBRXhELE9BQUssR0FBRyxDQUNqQixRQUFtRCxFQUN6QyxFQUFFLENBQUMsQ0FBQyxPQUFPLEVBQUUsSUFBQSx5QkFBUyxFQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUE7QUFFbkQsQ0FBQyxFQWpCZ0IsQ0FBQyxpQkFBRCxDQUFDLFFBaUJqQiJ9
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "pareto-graphviz",
3
+ "version": "0.1.0",
4
+ "description": "A TypeScript library for creating Graphviz graphs with pareto",
5
+ "main": "./dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "module": "./dist/index.js",
8
+ "bin": {},
9
+ "files": [
10
+ "dist",
11
+ "README.md",
12
+ "LICENSE",
13
+ "documentation"
14
+ ],
15
+ "keywords": [],
16
+ "author": "Corno",
17
+ "license": "Apache-2.0",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/corno/pareto-graphviz.git"
21
+ },
22
+ "bugs": {
23
+ "url": "https://github.com/corno/pareto-graphviz/issues"
24
+ },
25
+ "homepage": "https://github.com/corno/pareto-graphviz#readme",
26
+ "engines": {
27
+ "node": ">=14.0.0"
28
+ },
29
+ "dependencies": {
30
+ "exupery-core-alg": "^0.5.15",
31
+ "exupery-core-bin": "^0.3.36",
32
+ "exupery-core-data": "^0.3.3",
33
+ "pareto-fountain-pen": "^0.3.13",
34
+ "pareto-standard-operations": "^0.3.15"
35
+ }
36
+ }