@walkeros/web-destination-api 0.4.0 → 0.4.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.
- package/dist/dev.js +1 -1
- package/dist/dev.js.map +1 -1
- package/dist/dev.mjs +1 -1
- package/dist/dev.mjs.map +1 -1
- package/dist/examples/index.js +1 -1
- package/dist/examples/index.mjs +1 -1
- package/dist/index.d.mts +40 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/examples/index.js
CHANGED
|
@@ -68,7 +68,7 @@ function y(e, t = {}, n = {}) {
|
|
|
68
68
|
}
|
|
69
69
|
function C(e = {}) {
|
|
70
70
|
var _a;
|
|
71
|
-
const t = e.timestamp || (/* @__PURE__ */ new Date()).setHours(0, 13, 37, 0), n = e.group || "gr0up", o = e.count || 1, r = y({ name: "entity action", data: { string: "foo", number: 1, boolean: true, array: [0, "text", false], not: void 0 }, context: { dev: ["test", 1] }, globals: { lang: "elb" }, custom: { completely: "random" }, user: { id: "us3r", device: "c00k13", session: "s3ss10n" }, nested: [{ entity: "child", data: { is: "subordinated" }, nested: [], context: { element: ["child", 0] } }], consent: { functional: true }, id: `${t}-${n}-${o}`, trigger: "test", entity: "entity", action: "action", timestamp: t, timing: 3.14, group: n, count: o, version: { source: "0.
|
|
71
|
+
const t = e.timestamp || (/* @__PURE__ */ new Date()).setHours(0, 13, 37, 0), n = e.group || "gr0up", o = e.count || 1, r = y({ name: "entity action", data: { string: "foo", number: 1, boolean: true, array: [0, "text", false], not: void 0 }, context: { dev: ["test", 1] }, globals: { lang: "elb" }, custom: { completely: "random" }, user: { id: "us3r", device: "c00k13", session: "s3ss10n" }, nested: [{ entity: "child", data: { is: "subordinated" }, nested: [], context: { element: ["child", 0] } }], consent: { functional: true }, id: `${t}-${n}-${o}`, trigger: "test", entity: "entity", action: "action", timestamp: t, timing: 3.14, group: n, count: o, version: { source: "0.4.1", tagging: 1 }, source: { type: "web", id: "https://localhost:80", previous_id: "http://remotehost:9001" } }, e, { merge: false });
|
|
72
72
|
if (e.name) {
|
|
73
73
|
const [t2, n2] = (_a = e.name.split(" ")) != null ? _a : [];
|
|
74
74
|
t2 && n2 && (r.entity = t2, r.action = n2);
|
package/dist/examples/index.mjs
CHANGED
|
@@ -46,7 +46,7 @@ function y(e, t = {}, n = {}) {
|
|
|
46
46
|
}
|
|
47
47
|
function C(e = {}) {
|
|
48
48
|
var _a;
|
|
49
|
-
const t = e.timestamp || (/* @__PURE__ */ new Date()).setHours(0, 13, 37, 0), n = e.group || "gr0up", o = e.count || 1, r = y({ name: "entity action", data: { string: "foo", number: 1, boolean: true, array: [0, "text", false], not: void 0 }, context: { dev: ["test", 1] }, globals: { lang: "elb" }, custom: { completely: "random" }, user: { id: "us3r", device: "c00k13", session: "s3ss10n" }, nested: [{ entity: "child", data: { is: "subordinated" }, nested: [], context: { element: ["child", 0] } }], consent: { functional: true }, id: `${t}-${n}-${o}`, trigger: "test", entity: "entity", action: "action", timestamp: t, timing: 3.14, group: n, count: o, version: { source: "0.
|
|
49
|
+
const t = e.timestamp || (/* @__PURE__ */ new Date()).setHours(0, 13, 37, 0), n = e.group || "gr0up", o = e.count || 1, r = y({ name: "entity action", data: { string: "foo", number: 1, boolean: true, array: [0, "text", false], not: void 0 }, context: { dev: ["test", 1] }, globals: { lang: "elb" }, custom: { completely: "random" }, user: { id: "us3r", device: "c00k13", session: "s3ss10n" }, nested: [{ entity: "child", data: { is: "subordinated" }, nested: [], context: { element: ["child", 0] } }], consent: { functional: true }, id: `${t}-${n}-${o}`, trigger: "test", entity: "entity", action: "action", timestamp: t, timing: 3.14, group: n, count: o, version: { source: "0.4.1", tagging: 1 }, source: { type: "web", id: "https://localhost:80", previous_id: "http://remotehost:9001" } }, e, { merge: false });
|
|
50
50
|
if (e.name) {
|
|
51
51
|
const [t2, n2] = (_a = e.name.split(" ")) != null ? _a : [];
|
|
52
52
|
t2 && n2 && (r.entity = t2, r.action = n2);
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Destination as Destination$1, SendHeaders, Mapping as Mapping$1, SendDataValue } from '@walkeros/core';
|
|
2
|
+
import { DestinationWeb, SendWebTransport, sendWeb } from '@walkeros/web-core';
|
|
3
|
+
|
|
4
|
+
interface Settings {
|
|
5
|
+
url: string;
|
|
6
|
+
headers?: SendHeaders;
|
|
7
|
+
method?: string;
|
|
8
|
+
transform?: Transform;
|
|
9
|
+
transport?: SendWebTransport;
|
|
10
|
+
}
|
|
11
|
+
type InitSettings = Partial<Settings>;
|
|
12
|
+
interface Mapping {
|
|
13
|
+
}
|
|
14
|
+
interface Env extends DestinationWeb.Env {
|
|
15
|
+
sendWeb?: typeof sendWeb;
|
|
16
|
+
}
|
|
17
|
+
type Types = Destination$1.Types<Settings, Mapping, Env, InitSettings>;
|
|
18
|
+
type Destination = DestinationWeb.Destination<Types>;
|
|
19
|
+
type Config = DestinationWeb.Config<Types>;
|
|
20
|
+
type Rule = Mapping$1.Rule<Mapping>;
|
|
21
|
+
type Rules = Mapping$1.Rules<Rule>;
|
|
22
|
+
type Transform = (data?: unknown, config?: Config, mapping?: Mapping$1.Rule<Mapping>) => SendDataValue;
|
|
23
|
+
|
|
24
|
+
type index_Config = Config;
|
|
25
|
+
type index_Destination = Destination;
|
|
26
|
+
type index_Env = Env;
|
|
27
|
+
type index_InitSettings = InitSettings;
|
|
28
|
+
type index_Mapping = Mapping;
|
|
29
|
+
type index_Rule = Rule;
|
|
30
|
+
type index_Rules = Rules;
|
|
31
|
+
type index_Settings = Settings;
|
|
32
|
+
type index_Transform = Transform;
|
|
33
|
+
type index_Types = Types;
|
|
34
|
+
declare namespace index {
|
|
35
|
+
export type { index_Config as Config, index_Destination as Destination, index_Env as Env, index_InitSettings as InitSettings, index_Mapping as Mapping, index_Rule as Rule, index_Rules as Rules, index_Settings as Settings, index_Transform as Transform, index_Types as Types };
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
declare const destinationAPI: Destination;
|
|
39
|
+
|
|
40
|
+
export { index as DestinationAPI, destinationAPI as default, destinationAPI };
|
package/dist/index.d.ts
CHANGED
|
@@ -8,12 +8,13 @@ interface Settings {
|
|
|
8
8
|
transform?: Transform;
|
|
9
9
|
transport?: SendWebTransport;
|
|
10
10
|
}
|
|
11
|
+
type InitSettings = Partial<Settings>;
|
|
11
12
|
interface Mapping {
|
|
12
13
|
}
|
|
13
14
|
interface Env extends DestinationWeb.Env {
|
|
14
15
|
sendWeb?: typeof sendWeb;
|
|
15
16
|
}
|
|
16
|
-
type Types = Destination$1.Types<Settings, Mapping, Env>;
|
|
17
|
+
type Types = Destination$1.Types<Settings, Mapping, Env, InitSettings>;
|
|
17
18
|
type Destination = DestinationWeb.Destination<Types>;
|
|
18
19
|
type Config = DestinationWeb.Config<Types>;
|
|
19
20
|
type Rule = Mapping$1.Rule<Mapping>;
|
|
@@ -23,6 +24,7 @@ type Transform = (data?: unknown, config?: Config, mapping?: Mapping$1.Rule<Mapp
|
|
|
23
24
|
type index_Config = Config;
|
|
24
25
|
type index_Destination = Destination;
|
|
25
26
|
type index_Env = Env;
|
|
27
|
+
type index_InitSettings = InitSettings;
|
|
26
28
|
type index_Mapping = Mapping;
|
|
27
29
|
type index_Rule = Rule;
|
|
28
30
|
type index_Rules = Rules;
|
|
@@ -30,7 +32,7 @@ type index_Settings = Settings;
|
|
|
30
32
|
type index_Transform = Transform;
|
|
31
33
|
type index_Types = Types;
|
|
32
34
|
declare namespace index {
|
|
33
|
-
export type { index_Config as Config, index_Destination as Destination, index_Env as Env, index_Mapping as Mapping, index_Rule as Rule, index_Rules as Rules, index_Settings as Settings, index_Transform as Transform, index_Types as Types };
|
|
35
|
+
export type { index_Config as Config, index_Destination as Destination, index_Env as Env, index_InitSettings as InitSettings, index_Mapping as Mapping, index_Rule as Rule, index_Rules as Rules, index_Settings as Settings, index_Transform as Transform, index_Types as Types };
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
declare const destinationAPI: Destination;
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/types/index.ts"],"sourcesContent":["import type { Settings, Destination, Env } from './types';\nimport { isDefined } from '@walkeros/core';\nimport { getEnv, sendWeb } from '@walkeros/web-core';\n\n// Types\nexport * as DestinationAPI from './types';\n\nexport const destinationAPI: Destination = {\n type: 'api',\n\n config: {},\n\n push(event, { config, mapping, data, env }) {\n const { settings } = config;\n const {\n url,\n headers,\n method,\n transform,\n transport = 'fetch',\n } = settings || {};\n\n if (!url) return;\n\n const eventData = isDefined(data) ? data : event;\n const body = transform\n ? transform(eventData, config, mapping) // Transform event data\n : JSON.stringify(eventData);\n\n const sendWebFn = (env as Env)?.sendWeb || sendWeb;\n sendWebFn(url, body, { headers, method, transport });\n },\n};\n\nexport default destinationAPI;\n","import type {\n Mapping as WalkerOSMapping,\n SendDataValue,\n SendHeaders,\n Destination as CoreDestination,\n} from '@walkeros/core';\nimport type { DestinationWeb, sendWeb } from '@walkeros/web-core';\nimport type { SendWebTransport } from '@walkeros/web-core';\n\nexport interface Settings {\n url: string;\n headers?: SendHeaders;\n method?: string;\n transform?: Transform;\n transport?: SendWebTransport;\n}\n\nexport interface Mapping {}\n\nexport interface Env extends DestinationWeb.Env {\n sendWeb?: typeof sendWeb;\n}\n\nexport type Types = CoreDestination.Types<Settings, Mapping, Env>;\n\nexport type Destination = DestinationWeb.Destination<Types>;\nexport type Config = DestinationWeb.Config<Types>;\n\nexport type Rule = WalkerOSMapping.Rule<Mapping>;\nexport type Rules = WalkerOSMapping.Rules<Rule>;\n\nexport type Transform = (\n data?: unknown,\n config?: Config,\n mapping?: WalkerOSMapping.Rule<Mapping>,\n) => SendDataValue;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A;;;;;;;AAEA,sBAAgC;;;ACFhC;;;ADOO,IAAM,iBAA8B;AAAA,EACzC,MAAM;AAAA,EAEN,QAAQ,CAAC;AAAA,EAET,KAAK,OAAO,EAAE,QAAQ,SAAS,MAAM,IAAI,GAAG;AAC1C,UAAM,EAAE,SAAS,IAAI;AACrB,UAAM;AAAA,MACJ;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,YAAY;AAAA,IACd,IAAI,YAAY,CAAC;AAEjB,QAAI,CAAC,IAAK;AAEV,UAAM,YAAY,EAAU,IAAI,IAAI,OAAO;AAC3C,UAAM,OAAO,YACT,UAAU,WAAW,QAAQ,OAAO,IACpC,KAAK,UAAU,SAAS;AAE5B,UAAM,aAAa,2BAAa,YAAW;AAC3C,cAAU,KAAK,MAAM,EAAE,SAAS,QAAQ,UAAU,CAAC;AAAA,EACrD;AACF;AAEA,IAAO,gBAAQ;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../src/types/index.ts"],"sourcesContent":["import type { Settings, Destination, Env } from './types';\nimport { isDefined } from '@walkeros/core';\nimport { getEnv, sendWeb } from '@walkeros/web-core';\n\n// Types\nexport * as DestinationAPI from './types';\n\nexport const destinationAPI: Destination = {\n type: 'api',\n\n config: {},\n\n push(event, { config, mapping, data, env }) {\n const { settings } = config;\n const {\n url,\n headers,\n method,\n transform,\n transport = 'fetch',\n } = settings || {};\n\n if (!url) return;\n\n const eventData = isDefined(data) ? data : event;\n const body = transform\n ? transform(eventData, config, mapping) // Transform event data\n : JSON.stringify(eventData);\n\n const sendWebFn = (env as Env)?.sendWeb || sendWeb;\n sendWebFn(url, body, { headers, method, transport });\n },\n};\n\nexport default destinationAPI;\n","import type {\n Mapping as WalkerOSMapping,\n SendDataValue,\n SendHeaders,\n Destination as CoreDestination,\n} from '@walkeros/core';\nimport type { DestinationWeb, sendWeb } from '@walkeros/web-core';\nimport type { SendWebTransport } from '@walkeros/web-core';\n\nexport interface Settings {\n url: string;\n headers?: SendHeaders;\n method?: string;\n transform?: Transform;\n transport?: SendWebTransport;\n}\n\n// InitSettings: user input (all optional)\nexport type InitSettings = Partial<Settings>;\n\nexport interface Mapping {}\n\nexport interface Env extends DestinationWeb.Env {\n sendWeb?: typeof sendWeb;\n}\n\nexport type Types = CoreDestination.Types<Settings, Mapping, Env, InitSettings>;\n\nexport type Destination = DestinationWeb.Destination<Types>;\nexport type Config = DestinationWeb.Config<Types>;\n\nexport type Rule = WalkerOSMapping.Rule<Mapping>;\nexport type Rules = WalkerOSMapping.Rules<Rule>;\n\nexport type Transform = (\n data?: unknown,\n config?: Config,\n mapping?: WalkerOSMapping.Rule<Mapping>,\n) => SendDataValue;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A;;;;;;;AAEA,sBAAgC;;;ACFhC;;;ADOO,IAAM,iBAA8B;AAAA,EACzC,MAAM;AAAA,EAEN,QAAQ,CAAC;AAAA,EAET,KAAK,OAAO,EAAE,QAAQ,SAAS,MAAM,IAAI,GAAG;AAC1C,UAAM,EAAE,SAAS,IAAI;AACrB,UAAM;AAAA,MACJ;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,YAAY;AAAA,IACd,IAAI,YAAY,CAAC;AAEjB,QAAI,CAAC,IAAK;AAEV,UAAM,YAAY,EAAU,IAAI,IAAI,OAAO;AAC3C,UAAM,OAAO,YACT,UAAU,WAAW,QAAQ,OAAO,IACpC,KAAK,UAAU,SAAS;AAE5B,UAAM,aAAa,2BAAa,YAAW;AAC3C,cAAU,KAAK,MAAM,EAAE,SAAS,QAAQ,UAAU,CAAC;AAAA,EACrD;AACF;AAEA,IAAO,gBAAQ;","names":[]}
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/types/index.ts","../src/index.ts"],"sourcesContent":["import type {\n Mapping as WalkerOSMapping,\n SendDataValue,\n SendHeaders,\n Destination as CoreDestination,\n} from '@walkeros/core';\nimport type { DestinationWeb, sendWeb } from '@walkeros/web-core';\nimport type { SendWebTransport } from '@walkeros/web-core';\n\nexport interface Settings {\n url: string;\n headers?: SendHeaders;\n method?: string;\n transform?: Transform;\n transport?: SendWebTransport;\n}\n\nexport interface Mapping {}\n\nexport interface Env extends DestinationWeb.Env {\n sendWeb?: typeof sendWeb;\n}\n\nexport type Types = CoreDestination.Types<Settings, Mapping, Env>;\n\nexport type Destination = DestinationWeb.Destination<Types>;\nexport type Config = DestinationWeb.Config<Types>;\n\nexport type Rule = WalkerOSMapping.Rule<Mapping>;\nexport type Rules = WalkerOSMapping.Rules<Rule>;\n\nexport type Transform = (\n data?: unknown,\n config?: Config,\n mapping?: WalkerOSMapping.Rule<Mapping>,\n) => SendDataValue;\n","import type { Settings, Destination, Env } from './types';\nimport { isDefined } from '@walkeros/core';\nimport { getEnv, sendWeb } from '@walkeros/web-core';\n\n// Types\nexport * as DestinationAPI from './types';\n\nexport const destinationAPI: Destination = {\n type: 'api',\n\n config: {},\n\n push(event, { config, mapping, data, env }) {\n const { settings } = config;\n const {\n url,\n headers,\n method,\n transform,\n transport = 'fetch',\n } = settings || {};\n\n if (!url) return;\n\n const eventData = isDefined(data) ? data : event;\n const body = transform\n ? transform(eventData, config, mapping) // Transform event data\n : JSON.stringify(eventData);\n\n const sendWebFn = (env as Env)?.sendWeb || sendWeb;\n sendWebFn(url, body, { headers, method, transport });\n },\n};\n\nexport default destinationAPI;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;ACOO,IAAM,iBAA8B;AAAA,EACzC,MAAM;AAAA,EAEN,QAAQ,CAAC;AAAA,EAET,KAAK,OAAO,EAAE,QAAQ,SAAS,MAAM,IAAI,GAAG;AAC1C,UAAM,EAAE,SAAS,IAAI;AACrB,UAAM;AAAA,MACJ;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,YAAY;AAAA,IACd,IAAI,YAAY,CAAC;AAEjB,QAAI,CAAC,IAAK;AAEV,UAAM,YAAY,EAAU,IAAI,IAAI,OAAO;AAC3C,UAAM,OAAO,YACT,UAAU,WAAW,QAAQ,OAAO,IACpC,KAAK,UAAU,SAAS;AAE5B,UAAM,aAAa,2BAAa,YAAW;AAC3C,cAAU,KAAK,MAAM,EAAE,SAAS,QAAQ,UAAU,CAAC;AAAA,EACrD;AACF;AAEA,IAAO,gBAAQ;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../src/types/index.ts","../src/index.ts"],"sourcesContent":["import type {\n Mapping as WalkerOSMapping,\n SendDataValue,\n SendHeaders,\n Destination as CoreDestination,\n} from '@walkeros/core';\nimport type { DestinationWeb, sendWeb } from '@walkeros/web-core';\nimport type { SendWebTransport } from '@walkeros/web-core';\n\nexport interface Settings {\n url: string;\n headers?: SendHeaders;\n method?: string;\n transform?: Transform;\n transport?: SendWebTransport;\n}\n\n// InitSettings: user input (all optional)\nexport type InitSettings = Partial<Settings>;\n\nexport interface Mapping {}\n\nexport interface Env extends DestinationWeb.Env {\n sendWeb?: typeof sendWeb;\n}\n\nexport type Types = CoreDestination.Types<Settings, Mapping, Env, InitSettings>;\n\nexport type Destination = DestinationWeb.Destination<Types>;\nexport type Config = DestinationWeb.Config<Types>;\n\nexport type Rule = WalkerOSMapping.Rule<Mapping>;\nexport type Rules = WalkerOSMapping.Rules<Rule>;\n\nexport type Transform = (\n data?: unknown,\n config?: Config,\n mapping?: WalkerOSMapping.Rule<Mapping>,\n) => SendDataValue;\n","import type { Settings, Destination, Env } from './types';\nimport { isDefined } from '@walkeros/core';\nimport { getEnv, sendWeb } from '@walkeros/web-core';\n\n// Types\nexport * as DestinationAPI from './types';\n\nexport const destinationAPI: Destination = {\n type: 'api',\n\n config: {},\n\n push(event, { config, mapping, data, env }) {\n const { settings } = config;\n const {\n url,\n headers,\n method,\n transform,\n transport = 'fetch',\n } = settings || {};\n\n if (!url) return;\n\n const eventData = isDefined(data) ? data : event;\n const body = transform\n ? transform(eventData, config, mapping) // Transform event data\n : JSON.stringify(eventData);\n\n const sendWebFn = (env as Env)?.sendWeb || sendWeb;\n sendWebFn(url, body, { headers, method, transport });\n },\n};\n\nexport default destinationAPI;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;ACOO,IAAM,iBAA8B;AAAA,EACzC,MAAM;AAAA,EAEN,QAAQ,CAAC;AAAA,EAET,KAAK,OAAO,EAAE,QAAQ,SAAS,MAAM,IAAI,GAAG;AAC1C,UAAM,EAAE,SAAS,IAAI;AACrB,UAAM;AAAA,MACJ;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA,YAAY;AAAA,IACd,IAAI,YAAY,CAAC;AAEjB,QAAI,CAAC,IAAK;AAEV,UAAM,YAAY,EAAU,IAAI,IAAI,OAAO;AAC3C,UAAM,OAAO,YACT,UAAU,WAAW,QAAQ,OAAO,IACpC,KAAK,UAAU,SAAS;AAE5B,UAAM,aAAa,2BAAa,YAAW;AAC3C,cAAU,KAAK,MAAM,EAAE,SAAS,QAAQ,UAAU,CAAC;AAAA,EACrD;AACF;AAEA,IAAO,gBAAQ;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@walkeros/web-destination-api",
|
|
3
3
|
"description": "Web API destination for walkerOS",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.mjs",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"update": "npx npm-check-updates -u && npm update"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@walkeros/web-core": "0.4.
|
|
38
|
+
"@walkeros/web-core": "0.4.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {},
|
|
41
41
|
"repository": {
|