@microsoft/applicationinsights-web-basic 2.8.2-nightly.2204-24 → 2.8.2
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/browser/aib.2.8.2.integrity.json +26 -0
- package/browser/{aib.2.8.2-nightly.2204-24.js → aib.2.8.2.js} +4 -4
- package/browser/aib.2.8.2.js.map +1 -0
- package/browser/aib.2.8.2.min.js +6 -0
- package/browser/aib.2.8.2.min.js.map +1 -0
- package/browser/aib.2.js +3 -3
- package/browser/aib.2.js.map +1 -1
- package/browser/aib.2.min.js +2 -2
- package/browser/aib.2.min.js.map +1 -1
- package/dist/applicationinsights-web-basic.d.ts +1 -1
- package/dist/applicationinsights-web-basic.js +3 -3
- package/dist/applicationinsights-web-basic.js.map +1 -1
- package/dist/applicationinsights-web-basic.min.js +2 -2
- package/dist/applicationinsights-web-basic.min.js.map +1 -1
- package/dist/applicationinsights-web-basic.rollup.d.ts +1 -1
- package/dist-esm/index.js +1 -1
- package/package.json +59 -62
- package/browser/aib.2.8.2-nightly.2204-24.integrity.json +0 -26
- package/browser/aib.2.8.2-nightly.2204-24.js.map +0 -1
- package/browser/aib.2.8.2-nightly.2204-24.min.js +0 -6
- package/browser/aib.2.8.2-nightly.2204-24.min.js.map +0 -1
package/dist-esm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,62 +1,59 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@microsoft/applicationinsights-web-basic",
|
|
3
|
-
"version": "2.8.2
|
|
4
|
-
"description": "Microsoft Application Insights Javascript SDK core and channel",
|
|
5
|
-
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
|
-
"author": "Microsoft Application Insights Team",
|
|
7
|
-
"main": "dist/applicationinsights-web-basic.js",
|
|
8
|
-
"module": "dist-esm/index.js",
|
|
9
|
-
"types": "types/index.d.ts",
|
|
10
|
-
"sideEffects": false,
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
|
|
13
|
-
"build:esm": "grunt aiskulite",
|
|
14
|
-
"build:browser": "rollup -c rollup.config.js",
|
|
15
|
-
"rebuild": "npm run build",
|
|
16
|
-
"test": "grunt aiskuliteunittests",
|
|
17
|
-
"lint": "tslint -p tsconfig.json",
|
|
18
|
-
"dtsgen": "api-extractor run --local && node ../scripts/dtsgen.js 'Microsoft.ApplicationInsights'",
|
|
19
|
-
"sri": "node ../tools/subResourceIntegrity/generateIntegrityFile.js"
|
|
20
|
-
},
|
|
21
|
-
"repository": {
|
|
22
|
-
"type": "git",
|
|
23
|
-
"url": "https://github.com/microsoft/ApplicationInsights-JS.git",
|
|
24
|
-
"directory": "AISKULight"
|
|
25
|
-
},
|
|
26
|
-
"devDependencies": {
|
|
27
|
-
"@microsoft/ai-test-framework": "0.0.1",
|
|
28
|
-
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
|
|
29
|
-
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
|
|
30
|
-
"@microsoft/api-extractor": "^7.18.1",
|
|
31
|
-
"grunt": "^1.4.1",
|
|
32
|
-
"grunt-cli": "^1.4.3",
|
|
33
|
-
"grunt-contrib-qunit": "^5.0.1",
|
|
34
|
-
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
|
35
|
-
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
|
36
|
-
"globby": "^11.0.0",
|
|
37
|
-
"magic-string": "^0.25.7",
|
|
38
|
-
"pako": "^2.0.3",
|
|
39
|
-
"@rollup/plugin-commonjs": "^18.0.0",
|
|
40
|
-
"@rollup/plugin-node-resolve": "^11.2.1",
|
|
41
|
-
"@rollup/plugin-replace": "^2.3.3",
|
|
42
|
-
"rollup-plugin-cleanup": "^3.2.1",
|
|
43
|
-
"rollup": "^2.32.0",
|
|
44
|
-
"source-map-loader": "^0.2.3",
|
|
45
|
-
"typescript": "^4.3.4",
|
|
46
|
-
"tslib": "^2.0.0"
|
|
47
|
-
},
|
|
48
|
-
"peerDependencies": {
|
|
49
|
-
"tslib": "*"
|
|
50
|
-
},
|
|
51
|
-
"dependencies": {
|
|
52
|
-
"@microsoft/dynamicproto-js": "^1.1.5",
|
|
53
|
-
"@microsoft/applicationinsights-shims": "2.0.1",
|
|
54
|
-
"@microsoft/applicationinsights-common": "2.8.2
|
|
55
|
-
"@microsoft/applicationinsights-channel-js": "2.8.2
|
|
56
|
-
"@microsoft/applicationinsights-core-js": "2.8.2
|
|
57
|
-
},
|
|
58
|
-
"license": "MIT"
|
|
59
|
-
|
|
60
|
-
"tag": "nightly"
|
|
61
|
-
}
|
|
62
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@microsoft/applicationinsights-web-basic",
|
|
3
|
+
"version": "2.8.2",
|
|
4
|
+
"description": "Microsoft Application Insights Javascript SDK core and channel",
|
|
5
|
+
"homepage": "https://github.com/microsoft/ApplicationInsights-JS#readme",
|
|
6
|
+
"author": "Microsoft Application Insights Team",
|
|
7
|
+
"main": "dist/applicationinsights-web-basic.js",
|
|
8
|
+
"module": "dist-esm/index.js",
|
|
9
|
+
"types": "types/index.d.ts",
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "npm run build:esm && npm run build:browser && npm run sri && npm run dtsgen",
|
|
13
|
+
"build:esm": "grunt aiskulite",
|
|
14
|
+
"build:browser": "rollup -c rollup.config.js",
|
|
15
|
+
"rebuild": "npm run build",
|
|
16
|
+
"test": "grunt aiskuliteunittests",
|
|
17
|
+
"lint": "tslint -p tsconfig.json",
|
|
18
|
+
"dtsgen": "api-extractor run --local && node ../scripts/dtsgen.js 'Microsoft.ApplicationInsights'",
|
|
19
|
+
"sri": "node ../tools/subResourceIntegrity/generateIntegrityFile.js"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/microsoft/ApplicationInsights-JS.git",
|
|
24
|
+
"directory": "AISKULight"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@microsoft/ai-test-framework": "0.0.1",
|
|
28
|
+
"@microsoft/applicationinsights-rollup-plugin-uglify3-js": "1.0.0",
|
|
29
|
+
"@microsoft/applicationinsights-rollup-es3": "1.1.3",
|
|
30
|
+
"@microsoft/api-extractor": "^7.18.1",
|
|
31
|
+
"grunt": "^1.4.1",
|
|
32
|
+
"grunt-cli": "^1.4.3",
|
|
33
|
+
"grunt-contrib-qunit": "^5.0.1",
|
|
34
|
+
"@nevware21/grunt-ts-plugin": "^0.4.3",
|
|
35
|
+
"@nevware21/grunt-eslint-ts": "^0.2.2",
|
|
36
|
+
"globby": "^11.0.0",
|
|
37
|
+
"magic-string": "^0.25.7",
|
|
38
|
+
"pako": "^2.0.3",
|
|
39
|
+
"@rollup/plugin-commonjs": "^18.0.0",
|
|
40
|
+
"@rollup/plugin-node-resolve": "^11.2.1",
|
|
41
|
+
"@rollup/plugin-replace": "^2.3.3",
|
|
42
|
+
"rollup-plugin-cleanup": "^3.2.1",
|
|
43
|
+
"rollup": "^2.32.0",
|
|
44
|
+
"source-map-loader": "^0.2.3",
|
|
45
|
+
"typescript": "^4.3.4",
|
|
46
|
+
"tslib": "^2.0.0"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"tslib": "*"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@microsoft/dynamicproto-js": "^1.1.5",
|
|
53
|
+
"@microsoft/applicationinsights-shims": "2.0.1",
|
|
54
|
+
"@microsoft/applicationinsights-common": "2.8.2",
|
|
55
|
+
"@microsoft/applicationinsights-channel-js": "2.8.2",
|
|
56
|
+
"@microsoft/applicationinsights-core-js": "2.8.2"
|
|
57
|
+
},
|
|
58
|
+
"license": "MIT"
|
|
59
|
+
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "aib",
|
|
3
|
-
"version": "2.8.2-nightly.2204-24",
|
|
4
|
-
"ext": {
|
|
5
|
-
"@js": {
|
|
6
|
-
"file": "aib.2.8.2-nightly.2204-24.js",
|
|
7
|
-
"type": "text/javascript; charset=utf-8",
|
|
8
|
-
"integrity": "sha256-uvPL4RFQviFGFliKlpVvBz8/uHL+7GOr2EIUeNEtGT0= sha384-oRoTVBxahA6swNLsUzjagl43XW+weqPtEumqf62xf0hMGFB7IMIFKjVz+8lygT2n sha512-Zyp1DO0HO0cYUcR3SkXL+ytG68qTPkwyNRHVlHHDIlpNPLXcxGQqGUXt1d8ZoOQVIQDJW8p73cgIB1nun8dJTA==",
|
|
9
|
-
"hashes": {
|
|
10
|
-
"sha256": "uvPL4RFQviFGFliKlpVvBz8/uHL+7GOr2EIUeNEtGT0=",
|
|
11
|
-
"sha384": "oRoTVBxahA6swNLsUzjagl43XW+weqPtEumqf62xf0hMGFB7IMIFKjVz+8lygT2n",
|
|
12
|
-
"sha512": "Zyp1DO0HO0cYUcR3SkXL+ytG68qTPkwyNRHVlHHDIlpNPLXcxGQqGUXt1d8ZoOQVIQDJW8p73cgIB1nun8dJTA=="
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"@min.js": {
|
|
16
|
-
"file": "aib.2.8.2-nightly.2204-24.min.js",
|
|
17
|
-
"type": "text/javascript; charset=utf-8",
|
|
18
|
-
"integrity": "sha256-5rZSkiJtjSgesZV3fh8DwX8RPVMdDZW7sdt2dl6JXC8= sha384-Ae3nCx8KFjB+oeYUfWpaMt36Aw03K296Rthc0l1W/N0apPO8pMDWVrGj5zexTfTC sha512-dKvhlnXWWOr7zyHlMKrIpsbV3nJeA8Tu3/GlDpNgXLjkN17eUgVLm5Y7vBwnB58pkldJtzrMsV7u5nGm8BoGQg==",
|
|
19
|
-
"hashes": {
|
|
20
|
-
"sha256": "5rZSkiJtjSgesZV3fh8DwX8RPVMdDZW7sdt2dl6JXC8=",
|
|
21
|
-
"sha384": "Ae3nCx8KFjB+oeYUfWpaMt36Aw03K296Rthc0l1W/N0apPO8pMDWVrGj5zexTfTC",
|
|
22
|
-
"sha512": "dKvhlnXWWOr7zyHlMKrIpsbV3nJeA8Tu3/GlDpNgXLjkN17eUgVLm5Y7vBwnB58pkldJtzrMsV7u5nGm8BoGQg=="
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|