Comparing version 1.0.3 to 1.0.4
@@ -1,2 +0,2 @@ | ||
type TimeSpanUnit = "ms" | "s" | "m" | "h" | "d" | "w"; | ||
export type TimeSpanUnit = "ms" | "s" | "m" | "h" | "d" | "w"; | ||
export declare class TimeSpan { | ||
@@ -13,2 +13,1 @@ constructor(value: number, unit: TimeSpanUnit); | ||
export type TypedArray = Uint8Array | Int8Array | Uint16Array | Int16Array | Uint32Array | Int32Array | Float32Array | Float64Array | BigInt64Array | BigUint64Array; | ||
export {}; |
189
package.json
{ | ||
"name": "oslo", | ||
"type": "module", | ||
"version": "1.0.3", | ||
"description": "A collection of auth-related utilities", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"module": "dist/index.js", | ||
"files": [ | ||
"/dist/" | ||
], | ||
"exports": { | ||
".": "./dist/index.js", | ||
"./cookie": "./dist/cookie/index.js", | ||
"./crypto": "./dist/crypto/index.js", | ||
"./encoding": "./dist/encoding/index.js", | ||
"./jwt": "./dist/jwt/index.js", | ||
"./oauth2": "./dist/oauth2/index.js", | ||
"./otp": "./dist/otp/index.js", | ||
"./password": "./dist/password/index.js", | ||
"./request": "./dist/request/index.js", | ||
"./webauthn": "./dist/webauthn/index.js" | ||
}, | ||
"typesVersions": { | ||
"*": { | ||
".": [ | ||
"dist/index.d.ts" | ||
], | ||
"cookie": [ | ||
"dist/cookie/index.d.ts" | ||
], | ||
"crypto": [ | ||
"dist/crypto/index.d.ts" | ||
], | ||
"encoding": [ | ||
"dist/encoding/index.d.ts" | ||
], | ||
"jwt": [ | ||
"dist/jwt/index.d.ts" | ||
], | ||
"oauth2": [ | ||
"dist/oauth2/index.d.ts" | ||
], | ||
"otp": [ | ||
"dist/otp/index.d.ts" | ||
], | ||
"password": [ | ||
"dist/password/index.d.ts" | ||
], | ||
"request": [ | ||
"dist/request/index.d.ts" | ||
], | ||
"webauthn": [ | ||
"dist/webauthn/index.d.ts" | ||
] | ||
} | ||
}, | ||
"keywords": [ | ||
"auth", | ||
"oauth2", | ||
"jwt", | ||
"crypto", | ||
"webauthn", | ||
"otp", | ||
"encoding", | ||
"auth", | ||
"random" | ||
], | ||
"author": "pilcrowOnPaper", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/pilcrowOnPaper/oslo" | ||
}, | ||
"devDependencies": { | ||
"@scure/base": "^1.1.3", | ||
"@types/node": "^20.8.6", | ||
"@typescript-eslint/eslint-plugin": "^6.7.5", | ||
"@typescript-eslint/parser": "^6.7.5", | ||
"eslint": "^8.51.0", | ||
"prettier": "^3.0.3", | ||
"typescript": "^5.2.2", | ||
"vitest": "^0.34.6" | ||
}, | ||
"dependencies": { | ||
"@node-rs/argon2": "1.7.0", | ||
"@node-rs/bcrypt": "1.9.0" | ||
}, | ||
"scripts": { | ||
"build": "rm -r dist/* && tsc", | ||
"format": "prettier -w .", | ||
"lint": "eslint src", | ||
"test": "vitest run --sequence.concurrent" | ||
} | ||
} | ||
"name": "oslo", | ||
"type": "module", | ||
"version": "1.0.4", | ||
"description": "A collection of auth-related utilities", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"module": "dist/index.js", | ||
"scripts": { | ||
"build": "rm -rf dist/* && tsc", | ||
"format": "prettier -w .", | ||
"lint": "eslint src", | ||
"test": "vitest run --sequence.concurrent" | ||
}, | ||
"files": [ | ||
"/dist/" | ||
], | ||
"exports": { | ||
".": "./dist/index.js", | ||
"./cookie": "./dist/cookie/index.js", | ||
"./crypto": "./dist/crypto/index.js", | ||
"./encoding": "./dist/encoding/index.js", | ||
"./jwt": "./dist/jwt/index.js", | ||
"./oauth2": "./dist/oauth2/index.js", | ||
"./otp": "./dist/otp/index.js", | ||
"./password": "./dist/password/index.js", | ||
"./request": "./dist/request/index.js", | ||
"./webauthn": "./dist/webauthn/index.js" | ||
}, | ||
"typesVersions": { | ||
"*": { | ||
".": [ | ||
"dist/index.d.ts" | ||
], | ||
"cookie": [ | ||
"dist/cookie/index.d.ts" | ||
], | ||
"crypto": [ | ||
"dist/crypto/index.d.ts" | ||
], | ||
"encoding": [ | ||
"dist/encoding/index.d.ts" | ||
], | ||
"jwt": [ | ||
"dist/jwt/index.d.ts" | ||
], | ||
"oauth2": [ | ||
"dist/oauth2/index.d.ts" | ||
], | ||
"otp": [ | ||
"dist/otp/index.d.ts" | ||
], | ||
"password": [ | ||
"dist/password/index.d.ts" | ||
], | ||
"request": [ | ||
"dist/request/index.d.ts" | ||
], | ||
"webauthn": [ | ||
"dist/webauthn/index.d.ts" | ||
] | ||
} | ||
}, | ||
"keywords": [ | ||
"auth", | ||
"oauth2", | ||
"jwt", | ||
"crypto", | ||
"webauthn", | ||
"otp", | ||
"encoding", | ||
"auth", | ||
"random" | ||
], | ||
"author": "pilcrowOnPaper", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/pilcrowOnPaper/oslo" | ||
}, | ||
"devDependencies": { | ||
"@scure/base": "^1.1.3", | ||
"@types/node": "^20.8.6", | ||
"@typescript-eslint/eslint-plugin": "^6.7.5", | ||
"@typescript-eslint/parser": "^6.7.5", | ||
"eslint": "^8.51.0", | ||
"prettier": "^3.0.3", | ||
"typescript": "^5.2.2", | ||
"vitest": "^0.34.6" | ||
}, | ||
"dependencies": { | ||
"@node-rs/argon2": "1.7.0", | ||
"@node-rs/bcrypt": "1.9.0", | ||
"auri": "1.0.2" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55384
3
1417
+ Addedauri@1.0.2
+ Added@actions/core@1.11.1(transitive)
+ Added@actions/exec@1.1.1(transitive)
+ Added@actions/http-client@2.2.3(transitive)
+ Added@actions/io@1.1.3(transitive)
+ Added@fastify/busboy@2.1.1(transitive)
+ Addedargparse@1.0.10(transitive)
+ Addedauri@1.0.2(transitive)
+ Addeddotenv@16.4.5(transitive)
+ Addedesprima@4.0.1(transitive)
+ Addedfront-matter@4.0.2(transitive)
+ Addedjs-yaml@3.14.1(transitive)
+ Addednanoid@4.0.2(transitive)
+ Addedsprintf-js@1.0.3(transitive)
+ Addedtunnel@0.0.6(transitive)
+ Addedundici@5.28.4(transitive)