0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/toolkit/connector-kit/package.json

63 lines
1.5 KiB
JSON
Raw Normal View History

2022-12-14 00:23:59 -05:00
{
"name": "@logto/connector-kit",
"version": "1.0.0-rc.2",
2022-12-14 00:23:59 -05:00
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/toolkit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/logto-io/toolkit.git"
},
"license": "MPL-2.0",
"type": "module",
2023-01-03 02:41:29 -05:00
"main": "./lib/index.js",
2022-12-14 00:23:59 -05:00
"exports": {
".": {
2023-01-03 02:41:29 -05:00
"default": "./lib/index.js",
"types": "./lib/index.d.ts",
2023-01-03 02:41:29 -05:00
"import": "./lib/index.js"
},
"./package.json": "./package.json"
2022-12-14 00:23:59 -05:00
},
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"precommit": "lint-staged",
"dev": "tsc --watch --preserveWatchOutput --incremental",
2023-01-03 02:41:29 -05:00
"build": "rm -rf lib/ && tsc",
2022-12-14 12:50:29 -05:00
"build:test": "pnpm build",
2022-12-14 00:23:59 -05:00
"lint": "eslint --ext .ts src",
"lint:report": "pnpm lint --format json --output-file report.json",
"prepack": "pnpm build"
},
"dependencies": {
"@logto/core-kit": "workspace:*",
"@logto/language-kit": "workspace:*",
"@silverhand/essentials": "2.4.0"
2022-12-14 00:23:59 -05:00
},
2022-12-14 12:24:32 -05:00
"optionalDependencies": {
"zod": "^3.20.2"
},
2022-12-14 00:23:59 -05:00
"devDependencies": {
2023-02-16 10:49:03 -05:00
"@silverhand/eslint-config": "2.0.1",
2023-02-17 00:41:05 -05:00
"@silverhand/ts-config": "2.0.3",
2023-01-07 07:42:10 -05:00
"@types/node": "^18.11.18",
2023-02-16 10:49:03 -05:00
"eslint": "^8.34.0",
2022-12-14 00:23:59 -05:00
"lint-staged": "^13.0.0",
2023-02-16 10:49:03 -05:00
"prettier": "^2.8.2",
2022-12-14 00:23:59 -05:00
"tslib": "^2.4.1",
2022-12-14 12:24:32 -05:00
"typescript": "^4.9.4"
2022-12-14 00:23:59 -05:00
},
"engines": {
2023-01-07 07:42:10 -05:00
"node": "^18.12.0"
2022-12-14 00:23:59 -05:00
},
"eslintConfig": {
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"publishConfig": {
"access": "public"
}
}