oauth2-server-grant-type-apple
Version:
Apple grant type for @node-oauth/oauth2-server
77 lines • 1.8 kB
JSON
{
"name": "oauth2-server-grant-type-apple",
"version": "0.6.0",
"description": "Apple grant type for @node-oauth/oauth2-server",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jpalumickas/node-oauth2-server-grant-type-apple.git"
},
"homepage": "https://github.com/jpalumickas/node-oauth2-server-grant-type-apple#readme",
"bugs": {
"url": "https://github.com/jpalumickas/node-oauth2-server-grant-type-apple/issues"
},
"author": {
"name": "Justas Palumickas",
"email": "jpalumickas@gmail.com",
"url": "https://jpalumickas.com"
},
"license": "MIT",
"dependencies": {
"jose": "^6.2.3"
},
"peerDependencies": {
"@node-oauth/oauth2-server": "^5.0.0"
},
"devDependencies": {
"@node-oauth/oauth2-server": "^5.3.0",
"@types/node": "^25.8.0",
"oxfmt": "^0.50.0",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=20"
},
"keywords": [
"oauth",
"oauth2",
"oauth2-server",
"grant-type",
"apple",
"jwt",
"ios"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"format": "oxfmt src test",
"format:check": "oxfmt --check src test",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.test.json"
}
}