diff options
-rw-r--r-- | packages/browser/package.json | 10 | ||||
-rw-r--r-- | packages/server/package.json | 12 | ||||
-rw-r--r-- | packages/typescript-types/package.json | 5 |
3 files changed, 19 insertions, 8 deletions
diff --git a/packages/browser/package.json b/packages/browser/package.json index 914077b..79c8909 100644 --- a/packages/browser/package.json +++ b/packages/browser/package.json @@ -1,12 +1,15 @@ { "name": "@webauthntine/browser", "version": "1.0.0", - "description": "WebAuthntine for the Browser", + "description": "WebAuthntine for Browsers", "main": "dist/webauthntine-browser.min.js", "types": "dist/index.d.ts", "author": "Matthew Miller <matthew@millerti.me>", "license": "MIT", "homepage": "https://github.com/MasterKale/WebAuthntine/packages/browser#readme", + "publishConfig": { + "access": "public" + }, "scripts": { "build": "rimraf dist && webpack", "test": "jest", @@ -15,14 +18,15 @@ "prepare": "npm run build" }, "keywords": [ - "webauthn" + "webauthn", + "typescript" ], "dependencies": { "base64-js": "^1.3.1" }, "devDependencies": { "@types/base64-js": "^1.2.5", - "@webauthntine/typescript-types": "^1.0.0", + "@webauthntine/typescript-types": "file:../typescript-types", "ts-loader": "^7.0.4", "webpack": "^4.43.0", "webpack-auto-inject-version": "^1.2.2", diff --git a/packages/server/package.json b/packages/server/package.json index 55c969c..c6c7e1a 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,12 +1,15 @@ { "name": "@webauthntine/server", "version": "1.0.0", - "description": "It's like FIDO2 and Constantine had a baby.", + "description": "WebAuthntine for Servers", "main": "dist/index.js", "types": "dist/index.d.ts", - "author": "Matthew Miller<matthew@millerti.me>", + "author": "Matthew Miller <matthew@millerti.me>", "license": "MIT", "homepage": "https://github.com/MasterKale/WebAuthntine/packages/server#readme", + "publishConfig": { + "access": "public" + }, "scripts": { "build": "rimraf dist && ttsc", "test": "jest", @@ -15,7 +18,8 @@ "prepare": "npm run build" }, "keywords": [ - "webauthn" + "webauthn", + "typescript" ], "dependencies": { "base64url": "^3.0.1", @@ -25,6 +29,6 @@ "node-rsa": "^1.0.8" }, "devDependencies": { - "@webauthntine/typescript-types": "^1.0.0" + "@webauthntine/typescript-types": "file:../typescript-types" } } diff --git a/packages/typescript-types/package.json b/packages/typescript-types/package.json index c9a1fe7..b3c2531 100644 --- a/packages/typescript-types/package.json +++ b/packages/typescript-types/package.json @@ -6,7 +6,10 @@ "types": "dist/index.d.ts", "author": "Matthew Miller <matthew@millerti.me>", "license": "MIT", - "homepage": "", + "homepage": "https://github.com/MasterKale/WebAuthntine/packages/typescript-types#readme", + "publishConfig": { + "access": "public" + }, "scripts": { "build": "rimraf dist && tsc", "prepare": "npm run build" |