2022-10-09 11:40:04 -05:00
|
|
|
{
|
|
|
|
"name": "@logto/shared",
|
2023-03-30 06:44:40 -05:00
|
|
|
"version": "1.0.3",
|
2022-10-09 11:40:04 -05:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
|
|
|
"license": "MPL-2.0",
|
2022-11-20 22:24:02 -05:00
|
|
|
"type": "module",
|
2022-10-09 11:40:04 -05:00
|
|
|
"files": [
|
|
|
|
"lib"
|
|
|
|
],
|
2022-12-12 00:43:23 -05:00
|
|
|
"exports": {
|
|
|
|
".": {
|
2023-04-04 03:23:25 -05:00
|
|
|
"import": "./lib/index.js",
|
|
|
|
"types": "./lib/index.d.ts"
|
|
|
|
},
|
|
|
|
"./universal": {
|
|
|
|
"import": "./lib/universal.js",
|
|
|
|
"types": "./lib/universal.d.ts"
|
2022-12-12 00:43:23 -05:00
|
|
|
},
|
|
|
|
"./esm": {
|
2023-04-04 03:23:25 -05:00
|
|
|
"import": "./lib/esm/index.js",
|
|
|
|
"types": "./lib/esm/index.d.ts"
|
2022-12-12 00:43:23 -05:00
|
|
|
}
|
|
|
|
},
|
2023-04-04 03:23:25 -05:00
|
|
|
"//": "This field is for parcel. Remove after https://github.com/parcel-bundler/parcel/pull/8807 published.",
|
|
|
|
"alias": {
|
|
|
|
"./universal": "./lib/universal.js"
|
|
|
|
},
|
2022-10-19 02:10:50 -05:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
2022-10-09 11:40:04 -05:00
|
|
|
"scripts": {
|
|
|
|
"precommit": "lint-staged",
|
|
|
|
"build": "rm -rf lib/ && tsc -p tsconfig.build.json",
|
2022-12-11 07:07:21 -05:00
|
|
|
"build:test": "rm -rf lib/ && tsc -p tsconfig.test.json --sourcemap",
|
2022-10-09 11:40:04 -05:00
|
|
|
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput --incremental",
|
|
|
|
"lint": "eslint --ext .ts src",
|
2022-10-10 10:44:02 -05:00
|
|
|
"lint:report": "pnpm lint --format json --output-file report.json",
|
2022-10-09 11:40:04 -05:00
|
|
|
"prepack": "pnpm build",
|
2022-12-11 07:07:21 -05:00
|
|
|
"test:only": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
|
|
"test": "pnpm build:test && pnpm test:only",
|
2022-12-14 12:50:29 -05:00
|
|
|
"test:ci": "pnpm test:only"
|
2022-10-09 11:40:04 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-03-21 06:33:08 -05:00
|
|
|
"@logto/connector-kit": "workspace:^",
|
2023-04-07 11:17:14 -05:00
|
|
|
"@silverhand/eslint-config": "3.0.1",
|
2023-03-24 11:28:36 -05:00
|
|
|
"@silverhand/ts-config": "3.0.0",
|
2023-03-07 01:54:57 -05:00
|
|
|
"@types/jest": "^29.4.0",
|
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",
|
2023-03-07 01:54:57 -05:00
|
|
|
"jest": "^29.5.0",
|
2022-10-09 11:40:04 -05:00
|
|
|
"lint-staged": "^13.0.0",
|
2023-02-16 10:49:03 -05:00
|
|
|
"prettier": "^2.8.2",
|
2023-03-21 06:37:51 -05:00
|
|
|
"typescript": "^5.0.0"
|
2022-10-09 11:40:04 -05:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-01-07 07:42:10 -05:00
|
|
|
"node": "^18.12.0"
|
2022-10-09 11:40:04 -05:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "@silverhand",
|
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/ban-types": "off"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"prettier": "@silverhand/eslint-config/.prettierrc",
|
|
|
|
"dependencies": {
|
2023-03-18 00:02:51 -05:00
|
|
|
"@silverhand/essentials": "^2.5.0",
|
2023-03-03 01:11:19 -05:00
|
|
|
"chalk": "^5.0.0",
|
2022-12-13 05:11:51 -05:00
|
|
|
"find-up": "^6.3.0",
|
|
|
|
"nanoid": "^4.0.0",
|
2022-10-09 11:40:04 -05:00
|
|
|
"slonik": "^30.0.0"
|
|
|
|
}
|
|
|
|
}
|