0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-02-03 21:48:55 -05:00
logto/packages/connector-schemas/package.json

44 lines
1.1 KiB
JSON
Raw Permalink Normal View History

{
"name": "@logto/connector-schemas",
2022-08-11 13:48:19 +00:00
"version": "1.0.0-beta.4",
2022-04-24 01:06:05 +08:00
"main": "lib/index.js",
2022-04-25 11:26:41 +08:00
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
2022-07-01 18:47:14 +08:00
"private": true,
"files": [
"lib"
],
"scripts": {
"precommit": "lint-staged",
2022-04-24 01:06:05 +08:00
"build": "rm -rf lib/ && tsc --p tsconfig.build.json",
"lint": "eslint --ext .ts src",
2022-05-05 18:26:30 +08:00
"lint:report": "pnpm lint --format json --output-file report.json",
"prepack": "pnpm build"
},
"engines": {
2022-04-24 01:06:05 +08:00
"node": "^16.0.0"
},
"dependencies": {
2022-08-11 13:48:19 +00:00
"@logto/phrases": "^1.0.0-beta.4",
"zod": "^3.14.3"
},
"devDependencies": {
"@jest/types": "^28.1.3",
"@shopify/jest-koa-mocks": "^5.0.0",
"@silverhand/eslint-config": "1.0.0-rc.2",
"@silverhand/essentials": "^1.1.6",
"@silverhand/ts-config": "1.0.0-rc.2",
"@types/jest": "^28.1.6",
"@types/node": "^16.3.1",
"eslint": "^8.21.0",
"jest": "^28.1.3",
"lint-staged": "^13.0.0",
"prettier": "^2.7.1",
2022-08-11 13:48:19 +00:00
"typescript": "^4.7.4"
},
"eslintConfig": {
2022-04-24 01:06:05 +08:00
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc"
}