diff --git a/.gitignore b/.gitignore index a823ed2..9a75659 100644 --- a/.gitignore +++ b/.gitignore @@ -119,6 +119,10 @@ dist # TernJS port file .tern-port +# MacOS +.DS_Store +**/.DS_Store + # Stores VSCode versions used for testing VSCode extensions .vscode-test diff --git a/demo/.DS_Store b/demo/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/demo/.DS_Store and /dev/null differ diff --git a/lib/.DS_Store b/lib/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/lib/.DS_Store and /dev/null differ diff --git a/package.json b/package.json index 93927bd..3704044 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@hcaptcha/loader", "description": "This is a JavaScript library to easily configure the loading of the hCaptcha JS client SDK with built-in error handling.", - "version": "1.0.6", + "version": "1.0.7", "author": "hCaptcha team and contributors", "license": "MIT", "keywords": [ @@ -9,11 +9,11 @@ "captcha" ], "type": "module", - "main": "dist/index.mjs", - "types": "dist/types/src/index.d.ts", + "main": "./dist/index.mjs", + "types": "./dist/types/src/index.d.ts", "exports": { - "import": "dist/index.mjs", - "require": "dist/index.cjs" + "import": "./dist/index.mjs", + "require": "./dist/index.cjs" }, "files": [ "README.md",