2022-12-14 00:23:59 -05:00
|
|
|
{
|
|
|
|
"name": "@logto/connector-kit",
|
2023-11-03 00:14:52 -05:00
|
|
|
"version": "2.0.0",
|
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-01 05:36:46 -05:00
|
|
|
".": {
|
2023-01-03 02:41:29 -05:00
|
|
|
"default": "./lib/index.js",
|
2023-01-01 05:36:46 -05:00
|
|
|
"types": "./lib/index.d.ts",
|
2023-01-03 02:41:29 -05:00
|
|
|
"import": "./lib/index.js"
|
2023-01-01 05:36:46 -05:00
|
|
|
},
|
|
|
|
"./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",
|
2023-04-27 21:50:05 -05:00
|
|
|
"prepack": "pnpm build",
|
|
|
|
"test:only": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
|
|
"test": "pnpm build:test && pnpm test:only",
|
|
|
|
"test:ci": "pnpm test:only",
|
|
|
|
"test:coverage": "pnpm test:only --silent --coverage"
|
2022-12-14 00:23:59 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-04-17 05:10:14 -05:00
|
|
|
"@logto/language-kit": "workspace:^1.0.0",
|
2023-09-02 13:11:22 -05:00
|
|
|
"@silverhand/essentials": "^2.8.4",
|
2023-10-10 00:55:21 -05:00
|
|
|
"@withtyped/client": "^0.7.22",
|
2023-11-03 00:14:52 -05:00
|
|
|
"@withtyped/server": "^0.12.9"
|
2022-12-14 00:23:59 -05:00
|
|
|
},
|
2022-12-14 12:24:32 -05:00
|
|
|
"optionalDependencies": {
|
2023-11-06 22:38:54 -05:00
|
|
|
"zod": "^3.22.4"
|
2022-12-14 12:24:32 -05:00
|
|
|
},
|
2022-12-14 00:23:59 -05:00
|
|
|
"devDependencies": {
|
2023-04-27 21:50:05 -05:00
|
|
|
"@jest/types": "^29.0.3",
|
2023-07-07 12:17:21 -05:00
|
|
|
"@silverhand/eslint-config": "4.0.1",
|
|
|
|
"@silverhand/ts-config": "4.0.0",
|
2023-04-27 21:50:05 -05:00
|
|
|
"@types/jest": "^29.4.0",
|
2023-01-07 07:42:10 -05:00
|
|
|
"@types/node": "^18.11.18",
|
2023-07-07 12:17:21 -05:00
|
|
|
"eslint": "^8.44.0",
|
2023-04-27 21:50:05 -05:00
|
|
|
"jest": "^29.5.0",
|
2023-10-25 20:55:47 -05:00
|
|
|
"lint-staged": "^15.0.0",
|
2023-07-07 12:17:21 -05:00
|
|
|
"prettier": "^3.0.0",
|
2022-12-14 00:23:59 -05:00
|
|
|
"tslib": "^2.4.1",
|
2023-03-21 06:37:51 -05:00
|
|
|
"typescript": "^5.0.0"
|
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"
|
|
|
|
}
|
|
|
|
}
|