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