Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Feat: Apple Login Changes #231

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Auth SDK exposes the standard [Ethereum provider](https://eips.ethereum.org/EIPS
- Steam
- Twitter
- Twitch
- Apple

- Custom IAM

Expand Down
1,250 changes: 683 additions & 567 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
],
"scripts": {
"test": "jest",
"docs": "typedoc --options typedoc.json",
"htmldocs": "typedoc --options typedochtml.json",
"clean": "run-p clean:dist clean:types",
"clean:dist": "rimraf dist/",
Expand Down Expand Up @@ -85,10 +84,10 @@
"ts-jest": "^29.0.3",
"typedoc": "^0.26.3",
"typedoc-plugin-extras": "^3.0.0",
"typedoc-plugin-markdown": "^3.12.1",
"typedoc-plugin-markdown": "^4.2.3",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typedoc-theme-hierarchy": "^5.0.0",
"typedoc-material-theme": "^1.1.0",
"typescript": "^4.5.2"
},
"dependencies": {
Expand All @@ -106,4 +105,4 @@
"*.ts": "eslint --cache --fix",
"*.{js,css,md,ts}": "prettier --write"
}
}
}
113 changes: 113 additions & 0 deletions package_BACKUP_67121.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
{
"name": "@arcana/auth",
<<<<<<< HEAD
"version": "1.0.11-beta.6",
=======
"version": "1.0.11",
>>>>>>> release/1.0.11
"description": "Arcana Auth",
"main": "dist/index.js",
"type": "module",
"module": "dist/index.js",
"jsdelivr": "dist/standalone/auth.umd.js",
"unpkg": "dist/standalone/auth.umd.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"types": "dist/types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"test": "jest",
"docs": "typedoc --options typedoc.json",
"htmldocs": "typedoc --options typedochtml.json",
"clean": "run-p clean:dist clean:types",
"clean:dist": "rimraf dist/",
"clean:types": "rimraf types/",
"build": "run-s clean build:sdk ",
"build:sdk": "run-p build:esm build:umd build:ts",
"build:esm": "rollup --config rollup.es.config.js",
"build:umd": "rollup --config rollup.umd.config.js",
"build:ts": "tsc --project tsconfig.json --emitDeclarationOnly",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "eslint --ext .ts src",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"author": "makyl",
"license": "MIT",
"keywords": [
"oauth",
"social",
"authentication",
"passwordless",
"#",
"login",
"web3",
"encrypt",
"wallet"
],
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-inject": "^4.0.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^27.4.1",
"@types/validator": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-jest": "^29.0.2",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-tsdoc": "^0.2.16",
"events": "^3.3.0",
"husky": ">=6",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.2.0",
"lint-staged": ">=10",
"node-stdlib-browser": "^1.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"preact": "^10.11.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-postcss": "^4.0.2",
"@rollup/plugin-terser": "^0.4.4",
"ts-jest": "^29.0.3",
"typedoc": "^0.26.3",
"typedoc-plugin-extras": "^3.0.0",
"typedoc-plugin-markdown": "^3.12.1",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typedoc-theme-hierarchy": "^5.0.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@metamask/safe-event-emitter": "^2.0.0",
"@solana/web3.js": "^1.87.3",
"bs58": "^5.0.0",
"eth-rpc-errors": "^4.0.3",
"penpal": "^6.0.1",
"validator": "^13.11.0"
},
"resolutions": {
"terser": "^5.15.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,css,md,ts}": "prettier --write"
}
}
109 changes: 109 additions & 0 deletions package_BASE_67121.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
{
"name": "@arcana/auth",
"version": "1.0.10",
"description": "Arcana Auth",
"main": "dist/index.js",
"type": "module",
"module": "dist/index.js",
"jsdelivr": "dist/standalone/auth.umd.js",
"unpkg": "dist/standalone/auth.umd.js",
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"types": "dist/types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"test": "jest",
"docs": "typedoc --options typedoc.json",
"htmldocs": "typedoc --options typedochtml.json",
"clean": "run-p clean:dist clean:types",
"clean:dist": "rimraf dist/",
"clean:types": "rimraf types/",
"build": "run-s clean build:sdk ",
"build:sdk": "run-p build:esm build:umd build:ts",
"build:esm": "rollup --config rollup.es.config.js",
"build:umd": "rollup --config rollup.umd.config.js",
"build:ts": "tsc --project tsconfig.json --emitDeclarationOnly",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "eslint --ext .ts src",
"prepare": "husky install",
"prepublishOnly": "yarn run build"
},
"author": "makyl",
"license": "MIT",
"keywords": [
"oauth",
"social",
"authentication",
"passwordless",
"#",
"login",
"web3",
"encrypt",
"wallet"
],
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-inject": "^4.0.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^27.4.1",
"@types/validator": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-jest": "^29.0.2",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-tsdoc": "^0.2.16",
"events": "^3.3.0",
"husky": ">=6",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.2.0",
"lint-staged": ">=10",
"node-stdlib-browser": "^1.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"preact": "^10.11.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.3",
"typedoc": "^0.25.7",
"typedoc-plugin-extras": "^3.0.0",
"typedoc-plugin-markdown": "^3.12.1",
"typedoc-plugin-missing-exports": "^2.1.0",
"typedoc-plugin-rename-defaults": "^0.7.0",
"typedoc-theme-hierarchy": "^4.1.2",
"typescript": "^4.5.2"
},
"dependencies": {
"@metamask/safe-event-emitter": "^2.0.0",
"@solana/web3.js": "^1.87.3",
"bs58": "^5.0.0",
"eth-rpc-errors": "^4.0.3",
"penpal": "^6.0.1",
"validator": "^13.11.0"
},
"resolutions": {
"terser": "^5.15.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,css,md,ts}": "prettier --write"
}
}
109 changes: 109 additions & 0 deletions package_LOCAL_67121.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
{
"name": "@arcana/auth",
"version": "1.0.11-beta.6",
"description": "Arcana Auth",
"main": "dist/index.js",
"type": "module",
"module": "dist/index.js",
"jsdelivr": "dist/standalone/auth.umd.js",
"unpkg": "dist/standalone/auth.umd.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"types": "dist/types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"test": "jest",
"docs": "typedoc --options typedoc.json",
"htmldocs": "typedoc --options typedochtml.json",
"clean": "run-p clean:dist clean:types",
"clean:dist": "rimraf dist/",
"clean:types": "rimraf types/",
"build": "run-s clean build:sdk ",
"build:sdk": "run-p build:esm build:umd build:ts",
"build:esm": "rollup --config rollup.es.config.js",
"build:umd": "rollup --config rollup.umd.config.js",
"build:ts": "tsc --project tsconfig.json --emitDeclarationOnly",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "eslint --ext .ts src",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"author": "makyl",
"license": "MIT",
"keywords": [
"oauth",
"social",
"authentication",
"passwordless",
"#",
"login",
"web3",
"encrypt",
"wallet"
],
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-inject": "^4.0.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^27.4.1",
"@types/validator": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-jest": "^29.0.2",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-tsdoc": "^0.2.16",
"events": "^3.3.0",
"husky": ">=6",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.2.0",
"lint-staged": ">=10",
"node-stdlib-browser": "^1.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"preact": "^10.11.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-postcss": "^4.0.2",
"@rollup/plugin-terser": "^0.4.4",
"ts-jest": "^29.0.3",
"typedoc": "^0.26.3",
"typedoc-plugin-extras": "^3.0.0",
"typedoc-plugin-markdown": "^3.12.1",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typedoc-theme-hierarchy": "^5.0.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@metamask/safe-event-emitter": "^2.0.0",
"@solana/web3.js": "^1.87.3",
"bs58": "^5.0.0",
"eth-rpc-errors": "^4.0.3",
"penpal": "^6.0.1",
"validator": "^13.11.0"
},
"resolutions": {
"terser": "^5.15.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,css,md,ts}": "prettier --write"
}
}
Loading
Loading