0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/shared/package.json

74 lines
2 KiB
JSON
Raw Normal View History

{
"name": "@logto/shared",
2023-03-30 06:44:40 -05:00
"version": "1.0.3",
"main": "lib/index.js",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",
2022-11-20 22:24:02 -05:00
"type": "module",
"files": [
"lib"
],
2022-12-12 00:43:23 -05:00
"exports": {
".": {
"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": {
"import": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts"
2022-12-12 00:43:23 -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"
},
"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",
"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",
"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"
},
"devDependencies": {
"@logto/connector-kit": "workspace:^",
"@silverhand/eslint-config": "3.0.1",
"@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",
"lint-staged": "^13.0.0",
2023-02-16 10:49:03 -05:00
"prettier": "^2.8.2",
"typescript": "^5.0.0"
},
"engines": {
2023-01-07 07:42:10 -05:00
"node": "^18.12.0"
},
"eslintConfig": {
"extends": "@silverhand",
"rules": {
"@typescript-eslint/ban-types": "off"
}
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"dependencies": {
"@silverhand/essentials": "^2.5.0",
"chalk": "^5.0.0",
2022-12-13 05:11:51 -05:00
"find-up": "^6.3.0",
"nanoid": "^4.0.0",
"slonik": "^30.0.0"
}
}