0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-13 21:30:30 -05:00
logto/packages/phrases-ui/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "@logto/phrases-ui",
2023-02-02 22:18:08 +08:00
"version": "1.0.0-rc.0",
2022-10-19 15:10:50 +08: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-21 11:24:02 +08:00
"type": "module",
"main": "lib/index.js",
2022-10-19 15:10:50 +08: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 21:52:17 +08: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 13:23:59 +08:00
"@logto/core-kit": "workspace:*",
"@logto/language-kit": "workspace:*",
"@silverhand/essentials": "2.1.0",
2022-12-14 13:23:59 +08:00
"zod": "^3.20.2"
},
"devDependencies": {
"@silverhand/eslint-config": "1.3.0",
"@silverhand/ts-config": "1.2.1",
"eslint": "^8.21.0",
"lint-staged": "^13.0.0",
"prettier": "^2.8.1",
2022-12-12 21:15:09 +08:00
"typescript": "^4.9.4"
},
2022-11-06 00:29:28 +08:00
"engines": {
2023-01-07 20:42:10 +08:00
"node": "^18.12.0"
2022-11-06 00:29:28 +08:00
},
"eslintConfig": {
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc"
}