0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/phrases/package.json
renovate[bot] 565a0aead2
chore(deps): update dependency @silverhand/essentials to v2.4.1 (#3421)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-15 21:36:02 +08:00

52 lines
1.3 KiB
JSON

{
"name": "@logto/phrases",
"version": "1.0.0-rc.1",
"description": "Logto shared phrases (i18n).",
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
"license": "MPL-2.0",
"type": "module",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/logto-io/logto.git"
},
"scripts": {
"precommit": "lint-staged",
"build": "rm -rf lib/ && tsc",
"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"
},
"engines": {
"node": "^18.12.0"
},
"bugs": {
"url": "https://github.com/logto-io/logto/issues"
},
"dependencies": {
"@logto/language-kit": "workspace:*",
"@silverhand/essentials": "2.4.1",
"zod": "^3.20.2"
},
"devDependencies": {
"@silverhand/eslint-config": "2.0.1",
"@silverhand/ts-config": "2.0.3",
"eslint": "^8.34.0",
"lint-staged": "^13.0.0",
"prettier": "^2.8.2",
"typescript": "^4.9.4"
},
"eslintConfig": {
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc"
}