@salesforce/lds-runtime-webruntime 1.360.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/LICENSE.txt +82 -0
- package/dist/types/__mocks__/aura.d.ts +3 -0
- package/dist/types/__mocks__/o11y/activity.d.ts +12 -0
- package/dist/types/__mocks__/o11y/client.d.ts +11 -0
- package/dist/types/__mocks__/o11y/idleDetector.d.ts +18 -0
- package/dist/types/__mocks__/o11y/instrumentation.d.ts +15 -0
- package/dist/types/__mocks__/o11y_schema/sf_lds.d.ts +1 -0
- package/dist/types/jwt-authorized-fetch-service.d.ts +10 -0
- package/dist/types/main.d.ts +2 -0
- package/dist/types/network-sfap.d.ts +9 -0
- package/dist/webruntimeOneRuntimeInit.js +2909 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@salesforce/lds-runtime-webruntime",
|
|
3
|
+
"version": "1.360.0",
|
|
4
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
|
+
"description": "LDS engine for Webruntime runtime",
|
|
6
|
+
"main": "dist/webruntimeOneRuntimeInit.js",
|
|
7
|
+
"module": "dist/webruntimeOneRuntimeInit.js",
|
|
8
|
+
"types": "dist/types/main.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/types/main.d.ts",
|
|
15
|
+
"import": "./dist/webruntimeOneRuntimeInit.js",
|
|
16
|
+
"default": "./dist/webruntimeOneRuntimeInit.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"sfdc": {
|
|
20
|
+
"path": "forcelds/webruntimeOneRuntimeInit/",
|
|
21
|
+
"publishedFileName": "webruntimeOneRuntimeInit.js",
|
|
22
|
+
"overrides": {
|
|
23
|
+
"artifactDirectory": "dist",
|
|
24
|
+
"outputModuleName": "webruntimeOneRuntimeInit"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"prepare": "yarn build",
|
|
29
|
+
"build": "rollup --bundleConfigAsCjs --config rollup.config.js",
|
|
30
|
+
"clean": "rm -rf dist",
|
|
31
|
+
"test:unit": "jest",
|
|
32
|
+
"test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
|
|
33
|
+
"test:size": "luvioBundlesize",
|
|
34
|
+
"release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-runtime-webruntime",
|
|
35
|
+
"ready": "yarn build && yarn test:unit && yarn test:size && yarn release:corejar"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@luvio/service-provisioner": "5.40.3",
|
|
39
|
+
"@luvio/tools-core": "5.40.3",
|
|
40
|
+
"jwt-encode": "1.0.1"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@luvio/command-aura-network": "5.40.3",
|
|
44
|
+
"@luvio/command-aura-normalized-cache-control": "5.40.3",
|
|
45
|
+
"@luvio/command-aura-resource-cache-control": "5.40.3",
|
|
46
|
+
"@luvio/command-fetch-network": "5.40.3",
|
|
47
|
+
"@luvio/command-http-normalized-cache-control": "5.40.3",
|
|
48
|
+
"@luvio/command-ndjson": "5.40.3",
|
|
49
|
+
"@luvio/command-network": "5.40.3",
|
|
50
|
+
"@luvio/command-sse": "5.40.3",
|
|
51
|
+
"@luvio/command-streaming": "5.40.3",
|
|
52
|
+
"@luvio/jwt-manager": "5.40.3",
|
|
53
|
+
"@luvio/network-adapter-composable": "0.157.4",
|
|
54
|
+
"@luvio/network-adapter-fetch": "0.157.4",
|
|
55
|
+
"@luvio/service-aura-network": "5.40.3",
|
|
56
|
+
"@luvio/service-cache": "5.40.3",
|
|
57
|
+
"@luvio/service-cache-control": "5.40.3",
|
|
58
|
+
"@luvio/service-cache-inclusion-policy": "5.40.3",
|
|
59
|
+
"@luvio/service-fetch-network": "5.40.3",
|
|
60
|
+
"@luvio/service-instrument-command": "5.40.3",
|
|
61
|
+
"@luvio/service-pubsub": "5.40.3",
|
|
62
|
+
"@luvio/service-store": "5.40.3",
|
|
63
|
+
"@luvio/utils": "5.40.3",
|
|
64
|
+
"@salesforce/lds-adapters-uiapi-lex": "^1.360.0"
|
|
65
|
+
},
|
|
66
|
+
"luvioBundlesize": [
|
|
67
|
+
{
|
|
68
|
+
"path": "./dist/webruntimeOneRuntimeInit.js",
|
|
69
|
+
"maxSize": {
|
|
70
|
+
"none": "120 kB",
|
|
71
|
+
"min": "50 kB",
|
|
72
|
+
"compressed": "20 kB"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"volta": {
|
|
77
|
+
"extends": "../../package.json"
|
|
78
|
+
}
|
|
79
|
+
}
|