2023-04-01 07:53:44 -05:00
|
|
|
{
|
|
|
|
"name": "@logto/connector-logto-social-demo",
|
2024-02-08 00:18:42 -05:00
|
|
|
"version": "1.1.0",
|
2023-04-01 07:53:44 -05:00
|
|
|
"description": "OAuth standard connector implementation.",
|
|
|
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
|
|
|
"dependencies": {
|
2024-02-08 00:18:42 -05:00
|
|
|
"@logto/connector-kit": "workspace:^2.1.0"
|
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"
|
|
|
|
}
|
|
|
|
}
|