2023-04-01 07:53:44 -05:00
|
|
|
{
|
|
|
|
"name": "@logto/connector-apple",
|
2024-07-05 20:07:56 -05:00
|
|
|
"version": "1.3.1",
|
2023-04-01 07:53:44 -05:00
|
|
|
"description": "Apple web connector implementation.",
|
|
|
|
"dependencies": {
|
2024-07-05 20:07:56 -05:00
|
|
|
"@logto/connector-kit": "workspace:^4.0.0",
|
2024-02-08 00:18:42 -05:00
|
|
|
"@logto/shared": "workspace:^3.1.0",
|
2024-05-17 03:02:05 -05:00
|
|
|
"@silverhand/essentials": "^2.9.1",
|
2024-04-16 20:06:33 -05:00
|
|
|
"got": "^14.0.0",
|
2024-07-12 07:53:42 -05:00
|
|
|
"jose": "^5.6.3",
|
|
|
|
"snakecase-keys": "^8.0.1",
|
2024-07-12 07:56:01 -05:00
|
|
|
"zod": "^3.23.8"
|
2023-04-01 07:53:44 -05:00
|
|
|
},
|
|
|
|
"main": "./lib/index.js",
|
|
|
|
"module": "./lib/index.js",
|
|
|
|
"exports": "./lib/index.js",
|
|
|
|
"license": "MPL-2.0",
|
|
|
|
"type": "module",
|
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"docs",
|
|
|
|
"logo.svg",
|
|
|
|
"logo-dark.svg"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"precommit": "lint-staged",
|
|
|
|
"build:test": "rm -rf lib/ && tsc -p tsconfig.test.json --sourcemap",
|
|
|
|
"build": "rm -rf lib/ && tsc -p tsconfig.build.json --noEmit && rollup -c",
|
|
|
|
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput --incremental",
|
|
|
|
"lint": "eslint --ext .ts src",
|
|
|
|
"lint:report": "pnpm lint --format json --output-file report.json",
|
2024-03-27 21:21:50 -05:00
|
|
|
"test": "vitest src",
|
|
|
|
"test:ci": "pnpm run test --silent --coverage",
|
2023-04-01 07:53:44 -05:00
|
|
|
"prepublishOnly": "pnpm build"
|
|
|
|
},
|
|
|
|
"engines": {
|
2023-12-10 20:10:53 -05:00
|
|
|
"node": "^20.9.0"
|
2023-04-01 07:53:44 -05:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
2023-04-01 09:16:56 -05:00
|
|
|
"extends": "@silverhand",
|
|
|
|
"settings": {
|
|
|
|
"import/core-modules": [
|
|
|
|
"@silverhand/essentials",
|
|
|
|
"got",
|
|
|
|
"nock",
|
|
|
|
"snakecase-keys",
|
|
|
|
"zod"
|
|
|
|
]
|
|
|
|
}
|
2023-04-01 07:53:44 -05:00
|
|
|
},
|
|
|
|
"prettier": "@silverhand/eslint-config/.prettierrc",
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
2024-04-16 20:06:33 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-07-03 05:12:38 -05:00
|
|
|
"@rollup/plugin-commonjs": "^26.0.0",
|
2024-04-16 20:06:33 -05:00
|
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
|
|
"@rollup/plugin-typescript": "^11.1.6",
|
2024-04-18 07:26:37 -05:00
|
|
|
"@silverhand/eslint-config": "6.0.1",
|
|
|
|
"@silverhand/ts-config": "6.0.0",
|
2024-04-16 20:06:33 -05:00
|
|
|
"@types/node": "^20.11.20",
|
2024-04-18 01:32:12 -05:00
|
|
|
"@types/supertest": "^6.0.2",
|
2024-07-14 09:58:09 -05:00
|
|
|
"@vitest/coverage-v8": "^2.0.0",
|
2024-04-18 07:26:37 -05:00
|
|
|
"eslint": "^8.56.0",
|
2024-04-16 20:06:33 -05:00
|
|
|
"lint-staged": "^15.0.2",
|
|
|
|
"nock": "^13.3.1",
|
|
|
|
"prettier": "^3.0.0",
|
|
|
|
"rollup": "^4.12.0",
|
|
|
|
"rollup-plugin-output-size": "^1.3.0",
|
2024-04-24 22:53:00 -05:00
|
|
|
"supertest": "^7.0.0",
|
2024-07-20 09:04:56 -05:00
|
|
|
"typescript": "^5.5.3",
|
2024-07-14 09:58:09 -05:00
|
|
|
"vitest": "^2.0.0"
|
2023-04-01 07:53:44 -05:00
|
|
|
}
|
|
|
|
}
|