Plugin Directory

Changeset 3142540


Ignore:
Timestamp:
08/28/2024 01:33:44 AM (19 months ago)
Author:
racmanuel
Message:

1.0.7 - Removed the Appsero SDK and add Freemius SDK, and Tested up to: 6.6 version of WordPress, removed uninstall.php, and on deactive plugin delete_option('ar_model_viewer_for_woocommerce_settings');

Location:
ar-model-viewer-for-woocommerce/trunk
Files:
485 added
17 edited

Legend:

Unmodified
Added
Removed
  • ar-model-viewer-for-woocommerce/trunk/README.txt

    r3092358 r3142540  
    44Tags: Augmented Reality, AR, Model Viewer, 3D, Woocommerce
    55Requires at least: 5.9
    6 Tested up to: 6.5
    7 Stable tag: 1.0.5
     6Tested up to: 6.6
     7Stable tag: 1.0.7
    88Requires PHP: 7.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 The AR Model Viewer for WooCommmerce is a plugin that allows you to show 3D models in your products of your website and allow people to view them in augmented reality. 3D model files such as.glb and.gltf are supported by this plugin. The plugin is incredibly simple to use.
     12The AR Model Viewer for WooCommerce plugin shows 3D models on your website and in augmented reality. Supports .glb and .gltf files.
    1313
    1414== Description ==
     
    3131## Privacy Policy 🔒
    3232
    33 AR Model Viewer for WooCommerce uses the [Appsero](https://appsero.com) SDK to collect telemetry data, but only with the user's explicit consent. This data collection helps us troubleshoot issues and improve our product.
     33AR Model Viewer for WooCommerce uses the Freemius SDK to collect telemetry data, but only with the user's explicit consent. This data collection helps us troubleshoot issues and improve our product.
    3434
    3535- **No data is gathered by default.**
     
    3737- Collected data ensures a great user experience.
    3838
    39 Integrating the Appsero SDK **does not immediately start data collection without user confirmation**.
    40 
    41 For more details on how Appsero collects and uses data, please refer to their [privacy policy](https://appsero.com/privacy-policy/).
     39Integrating the Freemius SDK **does not immediately start data collection without user confirmation**.
    4240
    4341== Installation ==
     
    5452== Frequently Asked Questions ==
    5553
     54= Which file types are required for the 3D models/scenes? =
     55GLTF (*.glb) files are required for the 3D preview in the browser and the AR scenes on Android devices. Apple devices, such as iPhone, iPad or Apple Vision Pro, on the other hand, require **USDZ** (*.usdz) files to display AR content. AR Model Viewer for WooCommerce also adds support for **Reality** (*.reality) files for Apple devices.
     56
     57= Do I have to add models for Android and iOS? =
     58To ensure that all visitors to your website can see the AR scenes, each scene must have a dedicated model in both formats (.glb, .usdz) for Android and iOS/Apple devices. However, only a GLTF file is required for the 3D preview in the browser.
    5659
    5760== Screenshots ==
     
    6164
    62651.0.5 - Update the tested up to 6.5 and added Appsero
     661.0.6 - Update the tested up to 6.5 and added Appsero
     671.0.7 - Removed the Appsero SDK and add Freemius SDK, and Tested up to: 6.6 version of WordPress, removed uninstall.php, and on deactive plugin delete_option('ar_model_viewer_for_woocommerce_settings');
    6368
    6469== Upgrade Notice ==
    65 
  • ar-model-viewer-for-woocommerce/trunk/ar-model-viewer-for-woocommerce.php

    r3092358 r3142540  
    1616 * Plugin URI:        https://plugin.com/ar-model-viewer-for-woocommerce-uri/
    1717 * Description:       AR Model Viewer for WooCommerce plugin is an all in one solution to allow you to present your 3D models in an interactive AR view directly in your browser on both iOS and Android devices and all the products you have a 3D model, this plugin support formats .glb
    18  * Version:           1.0.5
     18 * Version:           1.0.7
    1919 * Author:            Manuel Ramirez Coronel
    2020 * Requires at least: 5.9
    2121 * Requires PHP:      7.4
    22  * Tested up to:      6.5
     22 * Tested up to:      6.6
    2323 * Requires Plugins: woocommerce
    2424 * WC requires at least: 3.9
     
    2929 * Text Domain:       ar-model-viewer-for-woocommerce
    3030 * Domain Path:       /languages
     31 *
     32 * @fs_premium_only /js/ar-model-viewer-for-woocommerce-admin-ctp.js, /js/ar-model-viewer-for-woocommerce-admin-ctp-dist.js, /css/ar-model-viewer-for-woocommerce-admin-ctp.css, /admin/class-ar-model-viewer-for-woocommerce-admin-ajax.php, /admin/class-ar-model-viewer-for-woocommerce-admin-custom-post-type.php
    3133 */
    3234
     
    4345require_once plugin_dir_path(__FILE__) . 'vendor/autoload.php';
    4446
     47if (!function_exists('ar_model_viewer_for_woocommerce_fs')) {
     48    // Create a helper function for easy SDK access.
     49    function ar_model_viewer_for_woocommerce_fs()
     50    {
     51        global $ar_model_viewer_for_woocommerce_fs;
     52
     53        if (!isset($ar_model_viewer_for_woocommerce_fs)) {
     54            // Include Freemius SDK.
     55            require_once dirname(__FILE__) . '/vendor/freemius/wordpress-sdk/start.php';
     56
     57            $ar_model_viewer_for_woocommerce_fs = fs_dynamic_init(array(
     58                'id' => '16088',
     59                'slug' => 'ar-model-viewer-for-woocommerce',
     60                'type' => 'plugin',
     61                'public_key' => 'pk_5143076d3ed4661ac299aa66baabc',
     62                'is_premium' => true,
     63                'premium_suffix' => 'Pro',
     64                // If your plugin is a serviceware, set this option to false.
     65                'has_premium_version' => true,
     66                'has_addons' => false,
     67                'has_paid_plans' => true,
     68                'menu' => array(
     69                    'slug' => 'ar_model_viewer_for_woocommerce_settings',
     70                    'parent' => array(
     71                        'slug' => 'options-general.php',
     72                    ),
     73                ),
     74            ));
     75        }
     76
     77        return $ar_model_viewer_for_woocommerce_fs;
     78    }
     79
     80    // Init Freemius.
     81    ar_model_viewer_for_woocommerce_fs();
     82    // Signal that SDK was initiated.
     83    do_action('ar_model_viewer_for_woocommerce_fs_loaded');
     84}
     85
    4586/**
    4687 * Current plugin version.
     
    4889 * Rename this for your plugin and update it as you release new versions.
    4990 */
    50 define('AR_MODEL_VIEWER_FOR_WOOCOMMERCE_VERSION', '1.0.5');
     91define('AR_MODEL_VIEWER_FOR_WOOCOMMERCE_VERSION', '1.0.7');
    5192
    5293/**
     
    82123register_deactivation_hook(__FILE__, 'ar_model_viewer_for_woocommerce_deactivate');
    83124
     125// Not like register_uninstall_hook(), you do NOT have to use a static function.
     126ar_model_viewer_for_woocommerce_fs()->add_action('after_uninstall', 'ar_model_viewer_for_woocommerce_uninstall');
     127
     128function ar_model_viewer_for_woocommerce_uninstall()
     129{
     130
     131    if (!defined('WP_UNINSTALL_PLUGIN')
     132        || empty($_REQUEST)
     133        || !isset($_REQUEST['plugin'])
     134        || !isset($_REQUEST['action'])
     135        || 'ar-model-viewer-for-woocommerce/ar-model-viewer-for-woocommerce.php' !== $_REQUEST['plugin']
     136        || 'delete-plugin' !== $_REQUEST['action']
     137        || !check_ajax_referer('updates', '_ajax_nonce')
     138        || !current_user_can('activate_plugins')
     139    ) {
     140        exit;
     141    }
     142}
     143
    84144/**
    85145 * The core plugin class that is used to define internationalization,
     
    87147 */
    88148require plugin_dir_path(__FILE__) . 'includes/class-ar-model-viewer-for-woocommerce.php';
    89 
    90 /**
    91  * Initialize the plugin tracker
    92  *
    93  * @return void
    94  */
    95 function appsero_init_tracker_ar_model_viewer_for_woocommerce()
    96 {
    97 
    98     if (!class_exists('Appsero\Client')) {
    99         require_once __DIR__ . '/appsero/src/Client.php';
    100     }
    101 
    102     $client = new Appsero\Client('25337288-b833-4220-ad60-666a2ae90aac', 'AR Model Viewer for WooCommerce', __FILE__);
    103 
    104     // Active insights
    105     $client->insights()->init();
    106 
    107 }
    108 
    109 appsero_init_tracker_ar_model_viewer_for_woocommerce();
    110149
    111150/**
  • ar-model-viewer-for-woocommerce/trunk/composer.json

    r3092358 r3142540  
    1414    "require": {
    1515        "cmb2/cmb2": "v2.10.1",
    16         "appsero/client": "dev-develop"
     16        "freemius/wordpress-sdk": "dev-master"
    1717    }
    1818}
  • ar-model-viewer-for-woocommerce/trunk/composer.lock

    r3092358 r3142540  
    55        "This file is @generated automatically"
    66    ],
    7     "content-hash": "35bf465a0d0a744fb0f7799ad8a4a695",
     7    "content-hash": "1c292b773ef89d7cb64bd4d3aa1077c4",
    88    "packages": [
    9         {
    10             "name": "appsero/client",
    11             "version": "dev-develop",
    12             "source": {
    13                 "type": "git",
    14                 "url": "https://github.com/Appsero/client.git",
    15                 "reference": "a8e02e8a5a862671f04ff00a456e2711d807a598"
    16             },
    17             "dist": {
    18                 "type": "zip",
    19                 "url": "https://api.github.com/repos/Appsero/client/zipball/a8e02e8a5a862671f04ff00a456e2711d807a598",
    20                 "reference": "a8e02e8a5a862671f04ff00a456e2711d807a598",
    21                 "shasum": ""
    22             },
    23             "require": {
    24                 "php": ">=5.6"
    25             },
    26             "require-dev": {
    27                 "dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
    28                 "phpcompatibility/phpcompatibility-wp": "dev-master",
    29                 "phpunit/phpunit": "^8.5.31",
    30                 "squizlabs/php_codesniffer": "^3.7",
    31                 "tareq1988/wp-php-cs-fixer": "dev-master",
    32                 "wp-coding-standards/wpcs": "dev-develop"
    33             },
    34             "default-branch": true,
    35             "type": "library",
    36             "autoload": {
    37                 "psr-4": {
    38                     "Appsero\\": "src/"
    39                 }
    40             },
    41             "notification-url": "https://packagist.org/downloads/",
    42             "license": [
    43                 "MIT"
    44             ],
    45             "authors": [
    46                 {
    47                     "name": "Tareq Hasan",
    48                     "email": "tareq@appsero.com"
    49                 }
    50             ],
    51             "description": "Appsero Client",
    52             "keywords": [
    53                 "analytics",
    54                 "plugin",
    55                 "theme",
    56                 "wordpress"
    57             ],
    58             "support": {
    59                 "issues": "https://github.com/Appsero/client/issues",
    60                 "source": "https://github.com/Appsero/client/tree/develop"
    61             },
    62             "time": "2024-01-30T08:15:23+00:00"
    63         },
    649        {
    6510            "name": "cmb2/cmb2",
     
    12065            },
    12166            "time": "2022-02-22T14:15:16+00:00"
     67        },
     68        {
     69            "name": "freemius/wordpress-sdk",
     70            "version": "dev-master",
     71            "source": {
     72                "type": "git",
     73                "url": "https://github.com/Freemius/wordpress-sdk.git",
     74                "reference": "2741ba2b4f819b5018f68529036e505ef1e7c349"
     75            },
     76            "dist": {
     77                "type": "zip",
     78                "url": "https://api.github.com/repos/Freemius/wordpress-sdk/zipball/2741ba2b4f819b5018f68529036e505ef1e7c349",
     79                "reference": "2741ba2b4f819b5018f68529036e505ef1e7c349",
     80                "shasum": ""
     81            },
     82            "require": {
     83                "php": ">=5.6"
     84            },
     85            "require-dev": {
     86                "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
     87                "phpcompatibility/php-compatibility": "^9.3",
     88                "phpcompatibility/phpcompatibility-wp": "^2.1",
     89                "phpstan/extension-installer": "^1.3",
     90                "squizlabs/php_codesniffer": "^3.7",
     91                "szepeviktor/phpstan-wordpress": "^1.3",
     92                "wp-coding-standards/wpcs": "^2.3"
     93            },
     94            "default-branch": true,
     95            "type": "library",
     96            "notification-url": "https://packagist.org/downloads/",
     97            "license": [
     98                "GPL-3.0-only"
     99            ],
     100            "description": "Freemius WordPress SDK",
     101            "homepage": "https://freemius.com",
     102            "keywords": [
     103                "freemius",
     104                "plugin",
     105                "sdk",
     106                "theme",
     107                "wordpress",
     108                "wordpress-plugin",
     109                "wordpress-theme"
     110            ],
     111            "support": {
     112                "issues": "https://github.com/Freemius/wordpress-sdk/issues",
     113                "source": "https://github.com/Freemius/wordpress-sdk/tree/2.7.4"
     114            },
     115            "time": "2024-08-07T14:07:59+00:00"
    122116        }
    123117    ],
     
    126120    "minimum-stability": "dev",
    127121    "stability-flags": {
    128         "appsero/client": 20
     122        "freemius/wordpress-sdk": 20
    129123    },
    130124    "prefer-stable": false,
  • ar-model-viewer-for-woocommerce/trunk/includes/class-ar-model-viewer-for-woocommerce-deactivator.php

    r2921327 r3142540  
    7070         * Perform your deactivation actions here.
    7171         */
    72 
     72        delete_option('ar_model_viewer_for_woocommerce_settings');
    7373    }
    7474
  • ar-model-viewer-for-woocommerce/trunk/node_modules/@google/model-viewer/package.json

    r3092358 r3142540  
    11{
    2   "name": "@google/model-viewer",
    3   "version": "1.12.0",
    4   "description": "Easily display interactive 3D models on the web and in AR!",
    5   "repository": "https://github.com/google/model-viewer",
     2  "_args": [
     3    [
     4      "@google/model-viewer@1.12.0",
     5      "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce"
     6    ]
     7  ],
     8  "_from": "@google/model-viewer@1.12.0",
     9  "_id": "@google/model-viewer@1.12.0",
     10  "_inBundle": false,
     11  "_integrity": "sha512-z6fn13vkY2ffQVEO2mtNK3zexqezsr57mO0SrSIJwvPSJnLPLLLCdSvR+2xNFUEbbbejBrgERV07kjcMReu87Q==",
     12  "_location": "/@google/model-viewer",
     13  "_phantomChildren": {},
     14  "_requested": {
     15    "type": "version",
     16    "registry": true,
     17    "raw": "@google/model-viewer@1.12.0",
     18    "name": "@google/model-viewer",
     19    "escapedName": "@google%2fmodel-viewer",
     20    "scope": "@google",
     21    "rawSpec": "1.12.0",
     22    "saveSpec": null,
     23    "fetchSpec": "1.12.0"
     24  },
     25  "_requiredBy": [
     26    "/"
     27  ],
     28  "_resolved": "https://registry.npmjs.org/@google/model-viewer/-/model-viewer-1.12.0.tgz",
     29  "_spec": "1.12.0",
     30  "_where": "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce",
    631  "bugs": {
    732    "url": "https://github.com/google/model-viewer/issues"
    833  },
    9   "homepage": "https://github.com/google/model-viewer#readme",
    10   "license": "Apache-2.0",
    11   "engines": {
    12     "node": ">=6.0.0"
    13   },
    1434  "contributors": [
    15     "Jordan Santell <jsantell@google.com>",
    16     "Chris Joel <cdata@google.com>",
    17     "Emmett Lalish <elalish@google.com>",
    18     "Ricardo Cabello <ricardocabello@google.com>",
    19     "Matt Small <mbsmall@google.com>",
    20     "Yuin Chien <yuin@google.com>"
    21   ],
    22   "main": "dist/model-viewer-umd.js",
    23   "module": "dist/model-viewer.min.js",
    24   "files": [
    25     "src",
    26     "lib",
    27     "dist/model-viewer.js",
    28     "dist/model-viewer.js.map",
    29     "dist/model-viewer.min.js",
    30     "dist/model-viewer.min.js.map",
    31     "dist/model-viewer-umd.js",
    32     "dist/model-viewer-umd.js.map",
    33     "dist/model-viewer-umd.min.js",
    34     "dist/model-viewer-umd.min.js.map"
    35   ],
    36   "scripts": {
    37     "clean": "rm -rf ./lib ./dist",
    38     "prepare": "if [ ! -L './shared-assets' ]; then ln -s ../shared-assets ./shared-assets; fi && ../shared-assets/scripts/fetch-khronos-gltf-samples.sh",
    39     "build": "npm run build:tsc && npm run build:rollup",
    40     "build:dev": "npm run build:tsc && npm run build:rollup:dev",
    41     "build:tsc": "tsc --incremental",
    42     "build:rollup": "rollup -c --environment NODE_ENV:production",
    43     "build:rollup:dev": "rollup -c --environment NODE_ENV:development",
    44     "prepublishOnly": "npm run build",
    45     "test": "karma start --single-run",
    46     "test:ci": "npm run test",
    47     "check-fidelity": "node ./test/fidelity/index.js ./test/fidelity/config.json",
    48     "compare-fidelity": "./scripts/compare-fidelity-to-ref.sh",
    49     "serve": "node_modules/.bin/http-server -c-1",
    50     "dev": "npm run build:dev && npm-run-all --parallel 'watch:tsc -- --preserveWatchOutput' 'watch:test' 'serve -- -s'",
    51     "watch:tsc": "tsc -w --incremental",
    52     "watch:rollup": "rollup -c -w --environment NODE_ENV:production",
    53     "watch:rollup:dev": "rollup -c -w --environment NODE_ENV:development",
    54     "watch:test": "karma start"
    55   },
    56   "keywords": [
    57     "ar",
    58     "gltf",
    59     "glb",
    60     "webar",
    61     "webvr",
    62     "webxr",
    63     "arcore",
    64     "arkit",
    65     "webaronarcore",
    66     "webaronarkit",
    67     "augmented reality",
    68     "model-viewer",
    69     "3d"
     35    {
     36      "name": "Jordan Santell",
     37      "email": "jsantell@google.com"
     38    },
     39    {
     40      "name": "Chris Joel",
     41      "email": "cdata@google.com"
     42    },
     43    {
     44      "name": "Emmett Lalish",
     45      "email": "elalish@google.com"
     46    },
     47    {
     48      "name": "Ricardo Cabello",
     49      "email": "ricardocabello@google.com"
     50    },
     51    {
     52      "name": "Matt Small",
     53      "email": "mbsmall@google.com"
     54    },
     55    {
     56      "name": "Yuin Chien",
     57      "email": "yuin@google.com"
     58    }
    7059  ],
    7160  "dependencies": {
    72     "three": "^0.139.2",
    73     "lit": "^2.2.3"
     61    "lit": "^2.2.3",
     62    "three": "^0.139.2"
    7463  },
     64  "description": "Easily display interactive 3D models on the web and in AR!",
    7565  "devDependencies": {
    7666    "@open-wc/karma-esm": "^4.0.0",
     
    10191    "typescript": "4.3.5"
    10292  },
     93  "engines": {
     94    "node": ">=6.0.0"
     95  },
     96  "files": [
     97    "src",
     98    "lib",
     99    "dist/model-viewer.js",
     100    "dist/model-viewer.js.map",
     101    "dist/model-viewer.min.js",
     102    "dist/model-viewer.min.js.map",
     103    "dist/model-viewer-umd.js",
     104    "dist/model-viewer-umd.js.map",
     105    "dist/model-viewer-umd.min.js",
     106    "dist/model-viewer-umd.min.js.map"
     107  ],
     108  "homepage": "https://github.com/google/model-viewer#readme",
     109  "keywords": [
     110    "ar",
     111    "gltf",
     112    "glb",
     113    "webar",
     114    "webvr",
     115    "webxr",
     116    "arcore",
     117    "arkit",
     118    "webaronarcore",
     119    "webaronarkit",
     120    "augmented reality",
     121    "model-viewer",
     122    "3d"
     123  ],
     124  "license": "Apache-2.0",
     125  "main": "dist/model-viewer-umd.js",
     126  "module": "dist/model-viewer.min.js",
     127  "name": "@google/model-viewer",
    103128  "publishConfig": {
    104129    "access": "public"
    105   }
     130  },
     131  "repository": {
     132    "type": "git",
     133    "url": "git+https://github.com/google/model-viewer.git"
     134  },
     135  "scripts": {
     136    "build": "npm run build:tsc && npm run build:rollup",
     137    "build:dev": "npm run build:tsc && npm run build:rollup:dev",
     138    "build:rollup": "rollup -c --environment NODE_ENV:production",
     139    "build:rollup:dev": "rollup -c --environment NODE_ENV:development",
     140    "build:tsc": "tsc --incremental",
     141    "check-fidelity": "node ./test/fidelity/index.js ./test/fidelity/config.json",
     142    "clean": "rm -rf ./lib ./dist",
     143    "compare-fidelity": "./scripts/compare-fidelity-to-ref.sh",
     144    "dev": "npm run build:dev && npm-run-all --parallel 'watch:tsc -- --preserveWatchOutput' 'watch:test' 'serve -- -s'",
     145    "prepare": "if [ ! -L './shared-assets' ]; then ln -s ../shared-assets ./shared-assets; fi && ../shared-assets/scripts/fetch-khronos-gltf-samples.sh",
     146    "prepublishOnly": "npm run build",
     147    "serve": "http-server -c-1",
     148    "test": "karma start --single-run",
     149    "test:ci": "npm run test",
     150    "watch:rollup": "rollup -c -w --environment NODE_ENV:production",
     151    "watch:rollup:dev": "rollup -c -w --environment NODE_ENV:development",
     152    "watch:test": "karma start",
     153    "watch:tsc": "tsc -w --incremental"
     154  },
     155  "version": "1.12.0"
    106156}
  • ar-model-viewer-for-woocommerce/trunk/node_modules/@lit/reactive-element/package.json

    r3092358 r3142540  
    11{
    2   "name": "@lit/reactive-element",
    3   "version": "1.3.4",
    4   "publishConfig": {
    5     "access": "public"
     2  "_args": [
     3    [
     4      "@lit/reactive-element@1.3.4",
     5      "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce"
     6    ]
     7  ],
     8  "_from": "@lit/reactive-element@1.3.4",
     9  "_id": "@lit/reactive-element@1.3.4",
     10  "_inBundle": false,
     11  "_integrity": "sha512-I1wz4uxOA52zSBhKmv4KQWLJpCyvfpnDg+eQR6mjpRgV+Ldi14HLPpSUpJklZRldz0fFmGCC/kVmuc/3cPFqCg==",
     12  "_location": "/@lit/reactive-element",
     13  "_phantomChildren": {},
     14  "_requested": {
     15    "type": "version",
     16    "registry": true,
     17    "raw": "@lit/reactive-element@1.3.4",
     18    "name": "@lit/reactive-element",
     19    "escapedName": "@lit%2freactive-element",
     20    "scope": "@lit",
     21    "rawSpec": "1.3.4",
     22    "saveSpec": null,
     23    "fetchSpec": "1.3.4"
     24  },
     25  "_requiredBy": [
     26    "/lit",
     27    "/lit-element"
     28  ],
     29  "_resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-1.3.4.tgz",
     30  "_spec": "1.3.4",
     31  "_where": "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce",
     32  "author": {
     33    "name": "Google LLC"
     34  },
     35  "bugs": {
     36    "url": "https://github.com/lit/lit/issues"
    637  },
    738  "description": "A simple low level base class for creating fast, lightweight web components",
    8   "license": "BSD-3-Clause",
    9   "repository": {
    10     "type": "git",
    11     "url": "https://github.com/lit/lit.git",
    12     "directory": "packages/reactive-element"
    13   },
    14   "author": "Google LLC",
    15   "homepage": "https://lit.dev/",
    16   "main": "reactive-element.js",
    17   "module": "reactive-element.js",
    18   "type": "module",
     39  "devDependencies": {
     40    "@babel/cli": "^7.14.6",
     41    "@babel/core": "^7.14.6",
     42    "@babel/plugin-proposal-class-properties": "^7.14.5",
     43    "@babel/plugin-proposal-decorators": "^7.14.5",
     44    "@babel/plugin-transform-typescript": "^7.14.6",
     45    "@lit-internal/scripts": "^1.0.0",
     46    "@webcomponents/shadycss": "^1.8.0",
     47    "@webcomponents/template": "^1.4.4",
     48    "@webcomponents/webcomponentsjs": "^2.6.0"
     49  },
     50  "directories": {
     51    "test": "test"
     52  },
    1953  "exports": {
    2054    ".": {
     
    94128    }
    95129  },
     130  "files": [
     131    "/css-tag.{d.ts,d.ts.map,js,js.map}",
     132    "/decorators.{d.ts,d.ts.map,js,js.map}",
     133    "/polyfill-support.{d.ts,d.ts.map,js,js.map}",
     134    "/reactive-controller.{d.ts,d.ts.map,js,js.map}",
     135    "/reactive-element.{d.ts,d.ts.map,js,js.map}",
     136    "/decorators/",
     137    "/development/",
     138    "!/development/test/"
     139  ],
     140  "homepage": "https://lit.dev/",
     141  "license": "BSD-3-Clause",
     142  "main": "reactive-element.js",
     143  "module": "reactive-element.js",
     144  "name": "@lit/reactive-element",
     145  "publishConfig": {
     146    "access": "public"
     147  },
     148  "repository": {
     149    "type": "git",
     150    "url": "git+https://github.com/lit/lit.git",
     151    "directory": "packages/reactive-element"
     152  },
    96153  "scripts": {
    97154    "build": "wireit",
     155    "build:babel": "wireit",
     156    "build:rollup": "wireit",
    98157    "build:ts": "wireit",
    99158    "build:ts:types": "wireit",
    100     "build:rollup": "wireit",
    101     "build:babel": "wireit",
    102159    "check-version": "wireit",
    103160    "checksize": "wireit",
     
    107164    "test:prod": "wireit"
    108165  },
     166  "type": "module",
     167  "typings": "reactive-element.d.ts",
     168  "version": "1.3.4",
    109169  "wireit": {
    110170    "build": {
     
    225285      "output": []
    226286    }
    227   },
    228   "files": [
    229     "/css-tag.{d.ts,d.ts.map,js,js.map}",
    230     "/decorators.{d.ts,d.ts.map,js,js.map}",
    231     "/polyfill-support.{d.ts,d.ts.map,js,js.map}",
    232     "/reactive-controller.{d.ts,d.ts.map,js,js.map}",
    233     "/reactive-element.{d.ts,d.ts.map,js,js.map}",
    234     "/decorators/",
    235     "/development/",
    236     "!/development/test/"
    237   ],
    238   "devDependencies": {
    239     "@babel/cli": "^7.14.6",
    240     "@babel/core": "^7.14.6",
    241     "@babel/plugin-proposal-class-properties": "^7.14.5",
    242     "@babel/plugin-proposal-decorators": "^7.14.5",
    243     "@babel/plugin-transform-typescript": "^7.14.6",
    244     "@webcomponents/shadycss": "^1.8.0",
    245     "@webcomponents/template": "^1.4.4",
    246     "@webcomponents/webcomponentsjs": "^2.6.0",
    247     "@lit-internal/scripts": "^1.0.0"
    248   },
    249   "typings": "reactive-element.d.ts",
    250   "directories": {
    251     "test": "test"
    252287  }
    253288}
  • ar-model-viewer-for-woocommerce/trunk/node_modules/@types/trusted-types/package.json

    r3092358 r3142540  
    11{
     2  "_args": [
     3    [
     4      "@types/trusted-types@2.0.2",
     5      "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce"
     6    ]
     7  ],
     8  "_from": "@types/trusted-types@2.0.2",
     9  "_id": "@types/trusted-types@2.0.2",
     10  "_inBundle": false,
     11  "_integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==",
     12  "_location": "/@types/trusted-types",
     13  "_phantomChildren": {},
     14  "_requested": {
     15    "type": "version",
     16    "registry": true,
     17    "raw": "@types/trusted-types@2.0.2",
    218    "name": "@types/trusted-types",
    3     "version": "2.0.2",
    4     "description": "TypeScript definitions for trusted-types",
    5     "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/trusted-types",
    6     "license": "MIT",
    7     "contributors": [
    8         {
    9             "name": "Jakub Vrana",
    10             "url": "https://github.com/vrana",
    11             "githubUsername": "vrana"
    12         },
    13         {
    14             "name": "Damien Engels",
    15             "url": "https://github.com/engelsdamien",
    16             "githubUsername": "engelsdamien"
    17         },
    18         {
    19             "name": "Emanuel Tesar",
    20             "url": "https://github.com/siegrift",
    21             "githubUsername": "siegrift"
    22         },
    23         {
    24             "name": "Bjarki",
    25             "url": "https://github.com/bjarkler",
    26             "githubUsername": "bjarkler"
    27         }
    28     ],
    29     "main": "",
    30     "types": "index.d.ts",
    31     "repository": {
    32         "type": "git",
    33         "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
    34         "directory": "types/trusted-types"
     19    "escapedName": "@types%2ftrusted-types",
     20    "scope": "@types",
     21    "rawSpec": "2.0.2",
     22    "saveSpec": null,
     23    "fetchSpec": "2.0.2"
     24  },
     25  "_requiredBy": [
     26    "/lit-html"
     27  ],
     28  "_resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz",
     29  "_spec": "2.0.2",
     30  "_where": "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce",
     31  "bugs": {
     32    "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues"
     33  },
     34  "contributors": [
     35    {
     36      "name": "Jakub Vrana",
     37      "url": "https://github.com/vrana"
    3538    },
    36     "scripts": {},
    37     "dependencies": {},
    38     "typesPublisherContentHash": "99d8c3702ecfbc895e9827c063dcce01708c2011a667e0844c3d8a88259efece",
    39     "typeScriptVersion": "3.6"
     39    {
     40      "name": "Damien Engels",
     41      "url": "https://github.com/engelsdamien"
     42    },
     43    {
     44      "name": "Emanuel Tesar",
     45      "url": "https://github.com/siegrift"
     46    },
     47    {
     48      "name": "Bjarki",
     49      "url": "https://github.com/bjarkler"
     50    }
     51  ],
     52  "dependencies": {},
     53  "description": "TypeScript definitions for trusted-types",
     54  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/trusted-types",
     55  "license": "MIT",
     56  "main": "",
     57  "name": "@types/trusted-types",
     58  "repository": {
     59    "type": "git",
     60    "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git",
     61    "directory": "types/trusted-types"
     62  },
     63  "scripts": {},
     64  "typeScriptVersion": "3.6",
     65  "types": "index.d.ts",
     66  "typesPublisherContentHash": "99d8c3702ecfbc895e9827c063dcce01708c2011a667e0844c3d8a88259efece",
     67  "version": "2.0.2"
    4068}
  • ar-model-viewer-for-woocommerce/trunk/node_modules/lit-element/package.json

    r3092358 r3142540  
    11{
    2   "name": "lit-element",
    3   "version": "3.2.2",
    4   "publishConfig": {
    5     "access": "public"
     2  "_args": [
     3    [
     4      "lit-element@3.2.2",
     5      "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce"
     6    ]
     7  ],
     8  "_from": "lit-element@3.2.2",
     9  "_id": "lit-element@3.2.2",
     10  "_inBundle": false,
     11  "_integrity": "sha512-6ZgxBR9KNroqKb6+htkyBwD90XGRiqKDHVrW/Eh0EZ+l+iC+u+v+w3/BA5NGi4nizAVHGYvQBHUDuSmLjPp7NQ==",
     12  "_location": "/lit-element",
     13  "_phantomChildren": {},
     14  "_requested": {
     15    "type": "version",
     16    "registry": true,
     17    "raw": "lit-element@3.2.2",
     18    "name": "lit-element",
     19    "escapedName": "lit-element",
     20    "rawSpec": "3.2.2",
     21    "saveSpec": null,
     22    "fetchSpec": "3.2.2"
     23  },
     24  "_requiredBy": [
     25    "/lit"
     26  ],
     27  "_resolved": "https://registry.npmjs.org/lit-element/-/lit-element-3.2.2.tgz",
     28  "_spec": "3.2.2",
     29  "_where": "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce",
     30  "author": {
     31    "name": "Google LLC"
     32  },
     33  "bugs": {
     34    "url": "https://github.com/lit/lit/issues"
     35  },
     36  "dependencies": {
     37    "@lit/reactive-element": "^1.3.0",
     38    "lit-html": "^2.2.0"
    639  },
    740  "description": "A simple base class for creating fast, lightweight web components",
    8   "license": "BSD-3-Clause",
    9   "repository": {
    10     "type": "git",
    11     "url": "https://github.com/lit/lit.git",
    12     "directory": "packages/lit-element"
    13   },
    14   "author": "Google LLC",
    15   "homepage": "https://lit.dev/",
    16   "main": "index.js",
    17   "module": "index.js",
    18   "types": "index.d.ts",
    19   "type": "module",
     41  "devDependencies": {
     42    "@lit-internal/scripts": "^1.0.0",
     43    "@webcomponents/shadycss": "^1.8.0",
     44    "@webcomponents/template": "^1.4.4",
     45    "@webcomponents/webcomponentsjs": "^2.6.0",
     46    "tslib": "^2.0.3"
     47  },
     48  "directories": {
     49    "test": "test"
     50  },
    2051  "exports": {
    2152    ".": {
     
    94125      "default": "./private-ssr-support.js"
    95126    }
     127  },
     128  "files": [
     129    "/decorators.{d.ts,d.ts.map,js,js.map}",
     130    "/experimental-hydrate-support.{d.ts,d.ts.map,js,js.map}",
     131    "/index.{d.ts,d.ts.map,js,js.map}",
     132    "/lit-element.{d.ts,d.ts.map,js,js.map}",
     133    "/polyfill-support.{d.ts,d.ts.map,js,js.map}",
     134    "/private-ssr-support.{d.ts,d.ts.map,js,js.map}",
     135    "/decorators/",
     136    "/development/",
     137    "!/development/test/"
     138  ],
     139  "homepage": "https://lit.dev/",
     140  "license": "BSD-3-Clause",
     141  "main": "index.js",
     142  "module": "index.js",
     143  "name": "lit-element",
     144  "publishConfig": {
     145    "access": "public"
     146  },
     147  "repository": {
     148    "type": "git",
     149    "url": "git+https://github.com/lit/lit.git",
     150    "directory": "packages/lit-element"
    96151  },
    97152  "scripts": {
     
    107162    "test:prod": "wireit"
    108163  },
     164  "type": "module",
     165  "types": "index.d.ts",
     166  "version": "3.2.2",
    109167  "wireit": {
    110168    "build": {
     
    221279      "output": []
    222280    }
    223   },
    224   "files": [
    225     "/decorators.{d.ts,d.ts.map,js,js.map}",
    226     "/experimental-hydrate-support.{d.ts,d.ts.map,js,js.map}",
    227     "/index.{d.ts,d.ts.map,js,js.map}",
    228     "/lit-element.{d.ts,d.ts.map,js,js.map}",
    229     "/polyfill-support.{d.ts,d.ts.map,js,js.map}",
    230     "/private-ssr-support.{d.ts,d.ts.map,js,js.map}",
    231     "/decorators/",
    232     "/development/",
    233     "!/development/test/"
    234   ],
    235   "dependencies": {
    236     "@lit/reactive-element": "^1.3.0",
    237     "lit-html": "^2.2.0"
    238   },
    239   "devDependencies": {
    240     "@webcomponents/shadycss": "^1.8.0",
    241     "@webcomponents/template": "^1.4.4",
    242     "@webcomponents/webcomponentsjs": "^2.6.0",
    243     "@lit-internal/scripts": "^1.0.0",
    244     "tslib": "^2.0.3"
    245   },
    246   "directories": {
    247     "test": "test"
    248281  }
    249282}
  • ar-model-viewer-for-woocommerce/trunk/node_modules/lit-html/package.json

    r3092358 r3142540  
    11{
    2   "name": "lit-html",
    3   "version": "2.2.7",
     2  "_args": [
     3    [
     4      "lit-html@2.2.7",
     5      "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce"
     6    ]
     7  ],
     8  "_from": "lit-html@2.2.7",
     9  "_id": "lit-html@2.2.7",
     10  "_inBundle": false,
     11  "_integrity": "sha512-JhqiAwO1l03kRe68uBZ0i2x4ef2S5szY9vvP411nlrFZIpKK4/hwnhA/15bqbvxe1lV3ipBdhaOzHmyOk7QIRg==",
     12  "_location": "/lit-html",
     13  "_phantomChildren": {},
     14  "_requested": {
     15    "type": "version",
     16    "registry": true,
     17    "raw": "lit-html@2.2.7",
     18    "name": "lit-html",
     19    "escapedName": "lit-html",
     20    "rawSpec": "2.2.7",
     21    "saveSpec": null,
     22    "fetchSpec": "2.2.7"
     23  },
     24  "_requiredBy": [
     25    "/lit",
     26    "/lit-element"
     27  ],
     28  "_resolved": "https://registry.npmjs.org/lit-html/-/lit-html-2.2.7.tgz",
     29  "_spec": "2.2.7",
     30  "_where": "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce",
     31  "author": {
     32    "name": "Google LLC"
     33  },
     34  "bugs": {
     35    "url": "https://github.com/lit/lit/issues"
     36  },
     37  "dependencies": {
     38    "@types/trusted-types": "^2.0.2"
     39  },
    440  "description": "HTML templates literals in JavaScript",
    5   "license": "BSD-3-Clause",
    6   "repository": {
    7     "type": "git",
    8     "url": "https://github.com/lit/lit.git",
    9     "directory": "packages/lit-html"
    10   },
    11   "author": "Google LLC",
    12   "homepage": "https://lit.dev/",
    13   "main": "lit-html.js",
    14   "type": "module",
     41  "devDependencies": {
     42    "@lit-internal/scripts": "^1.0.0",
     43    "@types/web-ie11": "^0.0.0",
     44    "@webcomponents/shadycss": "^1.8.0",
     45    "@webcomponents/template": "^1.4.4",
     46    "@webcomponents/webcomponentsjs": "^2.6.0"
     47  },
     48  "directories": {
     49    "test": "test"
     50  },
    1551  "exports": {
    1652    ".": {
     
    154190      "default": "./static.js"
    155191    }
    156   },
    157   "scripts": {
    158     "build": "wireit",
    159     "build:ts": "wireit",
    160     "build:ts:types": "wireit",
    161     "build:rollup": "wireit",
    162     "build:version-stability-test": "wireit",
    163     "check-version": "wireit",
    164     "checksize": "wireit",
    165     "prepublishOnly": "npm run check-version",
    166     "test": "wireit",
    167     "test:dev": "wireit",
    168     "test:prod": "wireit"
    169192  },
    170193  "files": [
     
    181204    "/directives/"
    182205  ],
     206  "homepage": "https://lit.dev/",
     207  "license": "BSD-3-Clause",
     208  "main": "lit-html.js",
     209  "name": "lit-html",
     210  "repository": {
     211    "type": "git",
     212    "url": "git+https://github.com/lit/lit.git",
     213    "directory": "packages/lit-html"
     214  },
     215  "scripts": {
     216    "build": "wireit",
     217    "build:rollup": "wireit",
     218    "build:ts": "wireit",
     219    "build:ts:types": "wireit",
     220    "build:version-stability-test": "wireit",
     221    "check-version": "wireit",
     222    "checksize": "wireit",
     223    "prepublishOnly": "npm run check-version",
     224    "test": "wireit",
     225    "test:dev": "wireit",
     226    "test:prod": "wireit"
     227  },
     228  "type": "module",
     229  "typings": "lit-html.d.ts",
     230  "version": "2.2.7",
    183231  "wireit": {
    184232    "build": {
     
    305353      "output": []
    306354    }
    307   },
    308   "dependencies": {
    309     "@types/trusted-types": "^2.0.2"
    310   },
    311   "devDependencies": {
    312     "@types/web-ie11": "^0.0.0",
    313     "@webcomponents/shadycss": "^1.8.0",
    314     "@webcomponents/template": "^1.4.4",
    315     "@webcomponents/webcomponentsjs": "^2.6.0",
    316     "@lit-internal/scripts": "^1.0.0"
    317   },
    318   "typings": "lit-html.d.ts",
    319   "directories": {
    320     "test": "test"
    321355  }
    322356}
  • ar-model-viewer-for-woocommerce/trunk/node_modules/lit/package.json

    r3092358 r3142540  
    11{
    2   "name": "lit",
    3   "version": "2.2.8",
    4   "publishConfig": {
    5     "access": "public"
     2  "_args": [
     3    [
     4      "lit@2.2.8",
     5      "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce"
     6    ]
     7  ],
     8  "_from": "lit@2.2.8",
     9  "_id": "lit@2.2.8",
     10  "_inBundle": false,
     11  "_integrity": "sha512-QjeNbi/H9LVIHR+u0OqsL+hs62a16m02JlJHYN48HcBuXyiPYR8JvzsTp5dYYS81l+b9Emp3UaGo82EheV0pog==",
     12  "_location": "/lit",
     13  "_phantomChildren": {},
     14  "_requested": {
     15    "type": "version",
     16    "registry": true,
     17    "raw": "lit@2.2.8",
     18    "name": "lit",
     19    "escapedName": "lit",
     20    "rawSpec": "2.2.8",
     21    "saveSpec": null,
     22    "fetchSpec": "2.2.8"
     23  },
     24  "_requiredBy": [
     25    "/@google/model-viewer"
     26  ],
     27  "_resolved": "https://registry.npmjs.org/lit/-/lit-2.2.8.tgz",
     28  "_spec": "2.2.8",
     29  "_where": "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce",
     30  "author": {
     31    "name": "Google LLC"
     32  },
     33  "bugs": {
     34    "url": "https://github.com/lit/lit/issues"
     35  },
     36  "dependencies": {
     37    "@lit/reactive-element": "^1.3.0",
     38    "lit-element": "^3.2.0",
     39    "lit-html": "^2.2.0"
    640  },
    741  "description": "A library for building fast, lightweight web components",
    8   "license": "BSD-3-Clause",
    9   "repository": {
    10     "type": "git",
    11     "url": "https://github.com/lit/lit.git",
    12     "directory": "packages/lit"
    13   },
    14   "author": "Google LLC",
    15   "homepage": "https://lit.dev/",
    16   "main": "index.js",
    17   "module": "index.js",
    18   "type": "module",
     42  "devDependencies": {
     43    "@lit-internal/scripts": "^1.0.0",
     44    "@webcomponents/shadycss": "^1.8.0",
     45    "@webcomponents/template": "^1.4.4",
     46    "@webcomponents/webcomponentsjs": "^2.6.0",
     47    "tslib": "^2.0.3"
     48  },
    1949  "exports": {
    2050    ".": {
     
    136166    }
    137167  },
     168  "files": [
     169    "/async-directive.{d.ts.map,d.ts,js.map,js}",
     170    "/decorators.{d.ts.map,d.ts,js.map,js}",
     171    "/directive-helpers.{d.ts.map,d.ts,js.map,js}",
     172    "/directive.{d.ts.map,d.ts,js.map,js}",
     173    "/html.{d.ts.map,d.ts,js.map,js}",
     174    "/experimental-hydrate-support.{d.ts.map,d.ts,js.map,js}",
     175    "/experimental-hydrate.{d.ts.map,d.ts,js.map,js}",
     176    "/index.{d.ts.map,d.ts,js.map,js}",
     177    "/polyfill-support.{d.ts.map,d.ts,js.map,js}",
     178    "/static-html.{d.ts.map,d.ts,js.map,js}",
     179    "/decorators/",
     180    "/directives/",
     181    "/logo.svg"
     182  ],
     183  "homepage": "https://lit.dev/",
     184  "license": "BSD-3-Clause",
     185  "main": "index.js",
     186  "module": "index.js",
     187  "name": "lit",
     188  "publishConfig": {
     189    "access": "public"
     190  },
     191  "repository": {
     192    "type": "git",
     193    "url": "git+https://github.com/lit/lit.git",
     194    "directory": "packages/lit"
     195  },
    138196  "scripts": {
    139197    "build": "wireit",
     198    "build:rollup": "wireit",
    140199    "build:ts": "wireit",
    141200    "build:ts:types": "wireit",
    142     "build:rollup": "wireit",
    143201    "checksize": "wireit",
    144202    "test": "wireit",
     
    146204    "test:prod": "wireit"
    147205  },
     206  "type": "module",
     207  "typings": "index.d.ts",
     208  "version": "2.2.8",
    148209  "wireit": {
    149210    "build": {
     
    260321      "output": []
    261322    }
    262   },
    263   "files": [
    264     "/async-directive.{d.ts.map,d.ts,js.map,js}",
    265     "/decorators.{d.ts.map,d.ts,js.map,js}",
    266     "/directive-helpers.{d.ts.map,d.ts,js.map,js}",
    267     "/directive.{d.ts.map,d.ts,js.map,js}",
    268     "/html.{d.ts.map,d.ts,js.map,js}",
    269     "/experimental-hydrate-support.{d.ts.map,d.ts,js.map,js}",
    270     "/experimental-hydrate.{d.ts.map,d.ts,js.map,js}",
    271     "/index.{d.ts.map,d.ts,js.map,js}",
    272     "/polyfill-support.{d.ts.map,d.ts,js.map,js}",
    273     "/static-html.{d.ts.map,d.ts,js.map,js}",
    274     "/decorators/",
    275     "/directives/",
    276     "/logo.svg"
    277   ],
    278   "dependencies": {
    279     "@lit/reactive-element": "^1.3.0",
    280     "lit-element": "^3.2.0",
    281     "lit-html": "^2.2.0"
    282   },
    283   "devDependencies": {
    284     "@webcomponents/shadycss": "^1.8.0",
    285     "@webcomponents/template": "^1.4.4",
    286     "@webcomponents/webcomponentsjs": "^2.6.0",
    287     "@lit-internal/scripts": "^1.0.0",
    288     "tslib": "^2.0.3"
    289   },
    290   "typings": "index.d.ts"
     323  }
    291324}
  • ar-model-viewer-for-woocommerce/trunk/node_modules/three/package.json

    r3092358 r3142540  
    11{
    2   "name": "three",
    3   "version": "0.139.2",
     2  "_args": [
     3    [
     4      "three@0.139.2",
     5      "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce"
     6    ]
     7  ],
     8  "_from": "three@0.139.2",
     9  "_id": "three@0.139.2",
     10  "_inBundle": false,
     11  "_integrity": "sha512-gV7q7QY8rogu7HLFZR9cWnOQAUedUhu2WXAnpr2kdXZP9YDKsG/0ychwQvWkZN5PlNw9mv5MoCTin6zNTXoONg==",
     12  "_location": "/three",
     13  "_phantomChildren": {},
     14  "_requested": {
     15    "type": "version",
     16    "registry": true,
     17    "raw": "three@0.139.2",
     18    "name": "three",
     19    "escapedName": "three",
     20    "rawSpec": "0.139.2",
     21    "saveSpec": null,
     22    "fetchSpec": "0.139.2"
     23  },
     24  "_requiredBy": [
     25    "/@google/model-viewer"
     26  ],
     27  "_resolved": "https://registry.npmjs.org/three/-/three-0.139.2.tgz",
     28  "_spec": "0.139.2",
     29  "_where": "C:\\laragon\\www\\developer-plugins\\wp-content\\plugins\\ar-model-viewer-for-woocommerce",
     30  "author": {
     31    "name": "mrdoob"
     32  },
     33  "browserslist": [
     34    "> 1%, not dead, not ie 11, not op_mini all"
     35  ],
     36  "bugs": {
     37    "url": "https://github.com/mrdoob/three.js/issues"
     38  },
    439  "description": "JavaScript 3D library",
    5   "type": "module",
    6   "main": "./build/three.js",
    7   "module": "./build/three.module.js",
    8   "exports": {
    9     ".": {
    10       "import": "./build/three.module.js",
    11       "require": "./build/three.cjs"
    12     },
    13     "./examples/fonts/*": "./examples/fonts/*",
    14     "./examples/jsm/*": "./examples/jsm/*",
    15     "./src/*": "./src/*"
    16   },
    17   "repository": {
    18     "type": "git",
    19     "url": "https://github.com/mrdoob/three.js"
    20   },
    21   "sideEffects": false,
    22   "files": [
    23     "build/three.js",
    24     "build/three.cjs",
    25     "build/three.min.js",
    26     "build/three.module.js",
    27     "examples/js",
    28     "examples/jsm",
    29     "examples/fonts",
    30     "LICENSE",
    31     "package.json",
    32     "README.md",
    33     "src"
    34   ],
     40  "devDependencies": {
     41    "@babel/core": "^7.15.5",
     42    "@babel/eslint-parser": "^7.15.7",
     43    "@babel/plugin-proposal-class-properties": "^7.14.5",
     44    "@babel/preset-env": "^7.15.6",
     45    "@rollup/plugin-babel": "^5.3.0",
     46    "@rollup/plugin-node-resolve": "^13.0.5",
     47    "chalk": "^4.1.2",
     48    "concurrently": "^6.2.2",
     49    "eslint": "^7.32.0",
     50    "eslint-config-mdcs": "^5.0.0",
     51    "eslint-plugin-compat": "^4.0.2",
     52    "eslint-plugin-html": "^6.2.0",
     53    "eslint-plugin-import": "^2.25.4",
     54    "rollup": "^2.57.0",
     55    "rollup-plugin-filesize": "^9.1.1",
     56    "rollup-plugin-terser": "^7.0.2",
     57    "rollup-plugin-visualizer": "^5.5.2",
     58    "servez": "^1.12.0"
     59  },
    3560  "directories": {
    3661    "doc": "docs",
     
    95120    }
    96121  },
    97   "browserslist": [
    98     "> 1%, not dead, not ie 11, not op_mini all"
    99   ],
    100   "scripts": {
    101     "start": "npm run dev",
    102     "test": "npm run lint && npm run test-unit",
    103     "build": "rollup -c utils/build/rollup.config.js",
    104     "build-module": "ONLY_MODULE=true rollup -c utils/build/rollup.config.js",
    105     "build-examples": "rollup -c utils/build/rollup.examples.config.js && echo '\nFormatting...' && eslint examples/js --ext js --ignore-pattern libs --ignore-pattern ifc --fix",
    106     "dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c utils/build/rollup.config.js -w -m inline\" \"servez -p 8080\"",
    107     "lint": "eslint src --ext js",
    108     "lint-examples": "eslint examples/js examples/jsm --ext js --ignore-pattern libs --ignore-pattern ifc",
    109     "lint-fix": "npm run lint -- --fix && npm run lint-examples -- --fix",
    110     "lint-docs": "eslint docs --ext html",
    111     "test-unit": "npm run unit --prefix test",
    112     "test-e2e": "node test/e2e/puppeteer.js",
    113     "test-e2e-cov": "node test/e2e/check-coverage.js",
    114     "test-treeshake": "rollup -c test/rollup.treeshake.config.js",
    115     "make-screenshot": "node test/e2e/puppeteer.js --make"
     122  "exports": {
     123    ".": {
     124      "import": "./build/three.module.js",
     125      "require": "./build/three.cjs"
     126    },
     127    "./examples/fonts/*": "./examples/fonts/*",
     128    "./examples/jsm/*": "./examples/jsm/*",
     129    "./src/*": "./src/*"
     130  },
     131  "files": [
     132    "build/three.js",
     133    "build/three.cjs",
     134    "build/three.min.js",
     135    "build/three.module.js",
     136    "examples/js",
     137    "examples/jsm",
     138    "examples/fonts",
     139    "LICENSE",
     140    "package.json",
     141    "README.md",
     142    "src"
     143  ],
     144  "homepage": "https://threejs.org/",
     145  "jspm": {
     146    "files": [
     147      "package.json",
     148      "LICENSE",
     149      "README.md",
     150      "build/three.js",
     151      "build/three.min.js",
     152      "build/three.module.js"
     153    ],
     154    "directories": {}
    116155  },
    117156  "keywords": [
     
    131170    "html5"
    132171  ],
    133   "author": "mrdoob",
    134172  "license": "MIT",
    135   "bugs": {
    136     "url": "https://github.com/mrdoob/three.js/issues"
    137   },
    138   "homepage": "https://threejs.org/",
    139   "devDependencies": {
    140     "@babel/core": "^7.15.5",
    141     "@babel/eslint-parser": "^7.15.7",
    142     "@babel/plugin-proposal-class-properties": "^7.14.5",
    143     "@babel/preset-env": "^7.15.6",
    144     "@rollup/plugin-babel": "^5.3.0",
    145     "@rollup/plugin-node-resolve": "^13.0.5",
    146     "chalk": "^4.1.2",
    147     "concurrently": "^6.2.2",
    148     "eslint": "^7.32.0",
    149     "eslint-config-mdcs": "^5.0.0",
    150     "eslint-plugin-compat": "^4.0.2",
    151     "eslint-plugin-html": "^6.2.0",
    152     "eslint-plugin-import": "^2.25.4",
    153     "rollup": "^2.57.0",
    154     "rollup-plugin-filesize": "^9.1.1",
    155     "rollup-plugin-terser": "^7.0.2",
    156     "rollup-plugin-visualizer": "^5.5.2",
    157     "servez": "^1.12.0"
    158   },
    159   "jspm": {
    160     "files": [
    161       "package.json",
    162       "LICENSE",
    163       "README.md",
    164       "build/three.js",
    165       "build/three.min.js",
    166       "build/three.module.js"
    167     ],
    168     "directories": {}
    169   }
     173  "main": "./build/three.js",
     174  "module": "./build/three.module.js",
     175  "name": "three",
     176  "repository": {
     177    "type": "git",
     178    "url": "git+https://github.com/mrdoob/three.js.git"
     179  },
     180  "scripts": {
     181    "build": "rollup -c utils/build/rollup.config.js",
     182    "build-examples": "rollup -c utils/build/rollup.examples.config.js && echo '\nFormatting...' && eslint examples/js --ext js --ignore-pattern libs --ignore-pattern ifc --fix",
     183    "build-module": "ONLY_MODULE=true rollup -c utils/build/rollup.config.js",
     184    "dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c utils/build/rollup.config.js -w -m inline\" \"servez -p 8080\"",
     185    "lint": "eslint src --ext js",
     186    "lint-docs": "eslint docs --ext html",
     187    "lint-examples": "eslint examples/js examples/jsm --ext js --ignore-pattern libs --ignore-pattern ifc",
     188    "lint-fix": "npm run lint -- --fix && npm run lint-examples -- --fix",
     189    "make-screenshot": "node test/e2e/puppeteer.js --make",
     190    "start": "npm run dev",
     191    "test": "npm run lint && npm run test-unit",
     192    "test-e2e": "node test/e2e/puppeteer.js",
     193    "test-e2e-cov": "node test/e2e/check-coverage.js",
     194    "test-treeshake": "rollup -c test/rollup.treeshake.config.js",
     195    "test-unit": "npm run unit --prefix test"
     196  },
     197  "sideEffects": false,
     198  "type": "module",
     199  "version": "0.139.2"
    170200}
  • ar-model-viewer-for-woocommerce/trunk/package-lock.json

    r3092358 r3142540  
    22  "name": "ar-model-viewer-for-woocommerce",
    33  "version": "1.0.0",
    4   "lockfileVersion": 3,
     4  "lockfileVersion": 1,
    55  "requires": true,
    6   "packages": {
    7     "": {
    8       "name": "ar-model-viewer-for-woocommerce",
    9       "version": "1.0.0",
    10       "license": "ISC",
    11       "dependencies": {
    12         "@google/model-viewer": "^1.12.0"
    13       }
    14     },
    15     "node_modules/@google/model-viewer": {
     6  "dependencies": {
     7    "@google/model-viewer": {
    168      "version": "1.12.0",
    179      "resolved": "https://registry.npmjs.org/@google/model-viewer/-/model-viewer-1.12.0.tgz",
    1810      "integrity": "sha512-z6fn13vkY2ffQVEO2mtNK3zexqezsr57mO0SrSIJwvPSJnLPLLLCdSvR+2xNFUEbbbejBrgERV07kjcMReu87Q==",
    19       "dependencies": {
     11      "requires": {
    2012        "lit": "^2.2.3",
    2113        "three": "^0.139.2"
    22       },
    23       "engines": {
    24         "node": ">=6.0.0"
    2514      }
    2615    },
    27     "node_modules/@lit/reactive-element": {
     16    "@lit/reactive-element": {
    2817      "version": "1.3.4",
    2918      "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-1.3.4.tgz",
    3019      "integrity": "sha512-I1wz4uxOA52zSBhKmv4KQWLJpCyvfpnDg+eQR6mjpRgV+Ldi14HLPpSUpJklZRldz0fFmGCC/kVmuc/3cPFqCg=="
    3120    },
    32     "node_modules/@types/trusted-types": {
     21    "@types/trusted-types": {
    3322      "version": "2.0.2",
    3423      "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz",
    3524      "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg=="
    3625    },
    37     "node_modules/lit": {
     26    "lit": {
    3827      "version": "2.2.8",
    3928      "resolved": "https://registry.npmjs.org/lit/-/lit-2.2.8.tgz",
    4029      "integrity": "sha512-QjeNbi/H9LVIHR+u0OqsL+hs62a16m02JlJHYN48HcBuXyiPYR8JvzsTp5dYYS81l+b9Emp3UaGo82EheV0pog==",
    41       "dependencies": {
     30      "requires": {
    4231        "@lit/reactive-element": "^1.3.0",
    4332        "lit-element": "^3.2.0",
     
    4534      }
    4635    },
    47     "node_modules/lit-element": {
     36    "lit-element": {
    4837      "version": "3.2.2",
    4938      "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-3.2.2.tgz",
    5039      "integrity": "sha512-6ZgxBR9KNroqKb6+htkyBwD90XGRiqKDHVrW/Eh0EZ+l+iC+u+v+w3/BA5NGi4nizAVHGYvQBHUDuSmLjPp7NQ==",
    51       "dependencies": {
     40      "requires": {
    5241        "@lit/reactive-element": "^1.3.0",
    5342        "lit-html": "^2.2.0"
    5443      }
    5544    },
    56     "node_modules/lit-html": {
     45    "lit-html": {
    5746      "version": "2.2.7",
    5847      "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-2.2.7.tgz",
    5948      "integrity": "sha512-JhqiAwO1l03kRe68uBZ0i2x4ef2S5szY9vvP411nlrFZIpKK4/hwnhA/15bqbvxe1lV3ipBdhaOzHmyOk7QIRg==",
    60       "dependencies": {
     49      "requires": {
    6150        "@types/trusted-types": "^2.0.2"
    6251      }
    6352    },
    64     "node_modules/three": {
     53    "three": {
    6554      "version": "0.139.2",
    6655      "resolved": "https://registry.npmjs.org/three/-/three-0.139.2.tgz",
  • ar-model-viewer-for-woocommerce/trunk/vendor/composer/autoload_psr4.php

    r3092358 r3142540  
    77
    88return array(
    9     'Appsero\\' => array($vendorDir . '/appsero/client/src'),
    109);
  • ar-model-viewer-for-woocommerce/trunk/vendor/composer/autoload_static.php

    r3092358 r3142540  
    1111    );
    1212
    13     public static $prefixLengthsPsr4 = array (
    14         'A' =>
    15         array (
    16             'Appsero\\' => 8,
    17         ),
    18     );
    19 
    20     public static $prefixDirsPsr4 = array (
    21         'Appsero\\' =>
    22         array (
    23             0 => __DIR__ . '/..' . '/appsero/client/src',
    24         ),
    25     );
    26 
    2713    public static $classMap = array (
    2814        'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
     
    3218    {
    3319        return \Closure::bind(function () use ($loader) {
    34             $loader->prefixLengthsPsr4 = ComposerStaticInitaa11e72c964b9472d0d064354a0971e1::$prefixLengthsPsr4;
    35             $loader->prefixDirsPsr4 = ComposerStaticInitaa11e72c964b9472d0d064354a0971e1::$prefixDirsPsr4;
    3620            $loader->classMap = ComposerStaticInitaa11e72c964b9472d0d064354a0971e1::$classMap;
    3721
  • ar-model-viewer-for-woocommerce/trunk/vendor/composer/installed.json

    r3092358 r3142540  
    11{
    22    "packages": [
    3         {
    4             "name": "appsero/client",
    5             "version": "dev-develop",
    6             "version_normalized": "dev-develop",
    7             "source": {
    8                 "type": "git",
    9                 "url": "https://github.com/Appsero/client.git",
    10                 "reference": "a8e02e8a5a862671f04ff00a456e2711d807a598"
    11             },
    12             "dist": {
    13                 "type": "zip",
    14                 "url": "https://api.github.com/repos/Appsero/client/zipball/a8e02e8a5a862671f04ff00a456e2711d807a598",
    15                 "reference": "a8e02e8a5a862671f04ff00a456e2711d807a598",
    16                 "shasum": ""
    17             },
    18             "require": {
    19                 "php": ">=5.6"
    20             },
    21             "require-dev": {
    22                 "dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
    23                 "phpcompatibility/phpcompatibility-wp": "dev-master",
    24                 "phpunit/phpunit": "^8.5.31",
    25                 "squizlabs/php_codesniffer": "^3.7",
    26                 "tareq1988/wp-php-cs-fixer": "dev-master",
    27                 "wp-coding-standards/wpcs": "dev-develop"
    28             },
    29             "time": "2024-01-30T08:15:23+00:00",
    30             "default-branch": true,
    31             "type": "library",
    32             "installation-source": "dist",
    33             "autoload": {
    34                 "psr-4": {
    35                     "Appsero\\": "src/"
    36                 }
    37             },
    38             "notification-url": "https://packagist.org/downloads/",
    39             "license": [
    40                 "MIT"
    41             ],
    42             "authors": [
    43                 {
    44                     "name": "Tareq Hasan",
    45                     "email": "tareq@appsero.com"
    46                 }
    47             ],
    48             "description": "Appsero Client",
    49             "keywords": [
    50                 "analytics",
    51                 "plugin",
    52                 "theme",
    53                 "wordpress"
    54             ],
    55             "support": {
    56                 "issues": "https://github.com/Appsero/client/issues",
    57                 "source": "https://github.com/Appsero/client/tree/develop"
    58             },
    59             "install-path": "../appsero/client"
    60         },
    613        {
    624            "name": "cmb2/cmb2",
     
    12062            },
    12163            "install-path": "../cmb2/cmb2"
     64        },
     65        {
     66            "name": "freemius/wordpress-sdk",
     67            "version": "dev-master",
     68            "version_normalized": "dev-master",
     69            "source": {
     70                "type": "git",
     71                "url": "https://github.com/Freemius/wordpress-sdk.git",
     72                "reference": "2741ba2b4f819b5018f68529036e505ef1e7c349"
     73            },
     74            "dist": {
     75                "type": "zip",
     76                "url": "https://api.github.com/repos/Freemius/wordpress-sdk/zipball/2741ba2b4f819b5018f68529036e505ef1e7c349",
     77                "reference": "2741ba2b4f819b5018f68529036e505ef1e7c349",
     78                "shasum": ""
     79            },
     80            "require": {
     81                "php": ">=5.6"
     82            },
     83            "require-dev": {
     84                "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
     85                "phpcompatibility/php-compatibility": "^9.3",
     86                "phpcompatibility/phpcompatibility-wp": "^2.1",
     87                "phpstan/extension-installer": "^1.3",
     88                "squizlabs/php_codesniffer": "^3.7",
     89                "szepeviktor/phpstan-wordpress": "^1.3",
     90                "wp-coding-standards/wpcs": "^2.3"
     91            },
     92            "time": "2024-08-07T14:07:59+00:00",
     93            "default-branch": true,
     94            "type": "library",
     95            "installation-source": "dist",
     96            "notification-url": "https://packagist.org/downloads/",
     97            "license": [
     98                "GPL-3.0-only"
     99            ],
     100            "description": "Freemius WordPress SDK",
     101            "homepage": "https://freemius.com",
     102            "keywords": [
     103                "freemius",
     104                "plugin",
     105                "sdk",
     106                "theme",
     107                "wordpress",
     108                "wordpress-plugin",
     109                "wordpress-theme"
     110            ],
     111            "support": {
     112                "issues": "https://github.com/Freemius/wordpress-sdk/issues",
     113                "source": "https://github.com/Freemius/wordpress-sdk/tree/2.7.4"
     114            },
     115            "install-path": "../freemius/wordpress-sdk"
    122116        }
    123117    ],
  • ar-model-viewer-for-woocommerce/trunk/vendor/composer/installed.php

    r3092358 r3142540  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '30bafe2ff687d8d352bd91fd4ec38b67f5ff735e',
     6        'reference' => '97aea6383d94f3cffcf5fa8dc5f2c86ac346656a',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1111    ),
    1212    'versions' => array(
    13         'appsero/client' => array(
    14             'pretty_version' => 'dev-develop',
    15             'version' => 'dev-develop',
    16             'reference' => 'a8e02e8a5a862671f04ff00a456e2711d807a598',
    17             'type' => 'library',
    18             'install_path' => __DIR__ . '/../appsero/client',
    19             'aliases' => array(
    20                 0 => '9999999-dev',
    21             ),
    22             'dev_requirement' => false,
    23         ),
    2413        'cmb2/cmb2' => array(
    2514            'pretty_version' => 'v2.10.1',
     
    3120            'dev_requirement' => false,
    3221        ),
     22        'freemius/wordpress-sdk' => array(
     23            'pretty_version' => 'dev-master',
     24            'version' => 'dev-master',
     25            'reference' => '2741ba2b4f819b5018f68529036e505ef1e7c349',
     26            'type' => 'library',
     27            'install_path' => __DIR__ . '/../freemius/wordpress-sdk',
     28            'aliases' => array(
     29                0 => '9999999-dev',
     30            ),
     31            'dev_requirement' => false,
     32        ),
    3333        'racmanuel/ar-model-viewer-for-woocommerce' => array(
    3434            'pretty_version' => 'dev-master',
    3535            'version' => 'dev-master',
    36             'reference' => '30bafe2ff687d8d352bd91fd4ec38b67f5ff735e',
     36            'reference' => '97aea6383d94f3cffcf5fa8dc5f2c86ac346656a',
    3737            'type' => 'library',
    3838            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.