@google-psat/cli 0.9.0-2 → 0.10.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/README.md +23 -20
- package/dist/assets/data/PSInfo.json +9 -2
- package/dist/assets/data/open-cookie-database.json +16545 -12646
- package/dist/assets/data/related_website_sets.json +66 -0
- package/dist/assets/icons/private-aggregation.svg +1 -0
- package/dist/assets/readme.md +3 -0
- package/dist/main.js +3 -3
- package/dist/main.js.LICENSE.txt +10 -0
- package/package.json +11 -4
- package/dist/208.js +0 -2
- package/dist/442.js +0 -2
- package/dist/main.js.map +0 -1
- package/dist/vendors-analysis-utils_node_modules_cross-fetch_dist_node-ponyfill_js.js +0 -4035
- package/dist/vendors-analysis-utils_node_modules_cross-fetch_dist_node-ponyfill_js.js.map +0 -1
package/dist/main.js.LICENSE.txt
CHANGED
|
@@ -100,6 +100,16 @@ and limitations under the License.
|
|
|
100
100
|
* LICENSE file in the root directory of this source tree.
|
|
101
101
|
*/
|
|
102
102
|
|
|
103
|
+
/**
|
|
104
|
+
* @license React
|
|
105
|
+
* react-jsx-runtime.production.min.js
|
|
106
|
+
*
|
|
107
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
108
|
+
*
|
|
109
|
+
* This source code is licensed under the MIT license found in the
|
|
110
|
+
* LICENSE file in the root directory of this source tree.
|
|
111
|
+
*/
|
|
112
|
+
|
|
103
113
|
/**
|
|
104
114
|
* @license React
|
|
105
115
|
* react.production.min.js
|
package/package.json
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@google-psat/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "CLI tool for analysis",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist-types/index.d.ts",
|
|
7
|
-
"keywords": [
|
|
7
|
+
"keywords": [
|
|
8
|
+
"psat",
|
|
9
|
+
"privacy sandbox",
|
|
10
|
+
"google",
|
|
11
|
+
"chrome"
|
|
12
|
+
],
|
|
8
13
|
"files": [
|
|
9
14
|
"assets",
|
|
10
15
|
"dist",
|
|
@@ -13,7 +18,7 @@
|
|
|
13
18
|
"scripts": {
|
|
14
19
|
"build": "webpack --config ../../cli.webpack.config.cjs ",
|
|
15
20
|
"dev": "webpack --config ../../cli.webpack.config.cjs --watch",
|
|
16
|
-
"
|
|
21
|
+
"prebuild": "rimraf dist dist-types tsconfig.tsbuildinfo",
|
|
17
22
|
"publish:local": "npm publish --registry=http://localhost:4873",
|
|
18
23
|
"publish:remote": "npm publish --access=public --registry=https://registry.npmjs.org",
|
|
19
24
|
"unpublish:local": "npm unpublish --registry=http://localhost:4873 --force",
|
|
@@ -45,7 +50,8 @@
|
|
|
45
50
|
"@google-psat/common": "*",
|
|
46
51
|
"@google-psat/i18n": "*",
|
|
47
52
|
"@google-psat/library-detection": "*",
|
|
48
|
-
"
|
|
53
|
+
"chalk": "^5.3.0",
|
|
54
|
+
"commander": "^10.0.1",
|
|
49
55
|
"fs-extra": "^11.1.1",
|
|
50
56
|
"promptly": "^3.2.0",
|
|
51
57
|
"sitemapper": "^3.1.8",
|
|
@@ -57,6 +63,7 @@
|
|
|
57
63
|
"@types/node": "^20.2.3",
|
|
58
64
|
"@types/promptly": "^3.0.2",
|
|
59
65
|
"@types/xml2js": "^0.4.14",
|
|
66
|
+
"coffee": "^5.5.1",
|
|
60
67
|
"tsc-watch": "^6.0.4",
|
|
61
68
|
"typescript": "^5.0.4",
|
|
62
69
|
"webpack": "^5.86.0"
|