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

58 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "@logto/phrases-ui",
"version": "1.0.0-rc.1",
2022-10-19 02:10:50 -05:00
"description": "Logto shared phrases (i18n) for main flow.",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
"license": "MPL-2.0",
2022-11-20 22:24:02 -05:00
"type": "module",
"main": "lib/index.js",
2022-10-19 02:10:50 -05:00
"publishConfig": {
"access": "public"
},
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/logto-io/logto.git"
},
"scripts": {
"precommit": "lint-staged",
"build": "rm -rf lib/ && tsc",
2022-12-12 08:52:17 -05:00
"build:test": "pnpm build",
"dev": "tsc --watch --preserveWatchOutput --incremental",
"lint": "eslint --ext .ts src",
"lint:report": "pnpm lint --format json --output-file report.json",
"prepack": "pnpm build"
},
"bugs": {
"url": "https://github.com/logto-io/logto/issues"
},
"dependencies": {
2022-12-14 00:23:59 -05:00
"@logto/core-kit": "workspace:*",
"@logto/language-kit": "workspace:*",
2023-02-18 00:34:52 -05:00
"@silverhand/essentials": "2.2.0",
2022-12-14 00:23:59 -05:00
"zod": "^3.20.2"
},
"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",
"buffer": "^5.7.1",
2023-02-16 10:49:03 -05:00
"eslint": "^8.34.0",
"lint-staged": "^13.0.0",
2023-02-16 10:49:03 -05:00
"prettier": "^2.8.2",
2022-12-12 08:15:09 -05:00
"typescript": "^4.9.4"
},
2022-11-05 11:29:28 -05:00
"engines": {
2023-01-07 07:42:10 -05:00
"node": "^18.12.0"
2022-11-05 11:29:28 -05:00
},
"eslintConfig": {
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc"
}