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

58 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "@logto/phrases",
2023-12-06 16:13:56 +08:00
"version": "1.8.0",
2022-10-19 15:10:50 +08:00
"description": "Logto shared phrases (i18n).",
2022-04-25 11:26:41 +08:00
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
2021-08-11 22:12:36 +08:00
"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"
},
"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",
2022-05-05 18:26:30 +08:00
"lint:report": "pnpm lint --format json --output-file report.json",
2021-07-29 17:46:28 +08:00
"prepack": "pnpm build"
},
2022-04-24 09:50:59 +08:00
"engines": {
"node": "^20.9.0"
2022-04-24 09:50:59 +08:00
},
"bugs": {
"url": "https://github.com/logto-io/logto/issues"
},
"dependencies": {
"@logto/language-kit": "workspace:^1.0.0",
2024-01-29 19:39:27 +08:00
"@silverhand/essentials": "^2.8.8"
},
"peerDependencies": {
"zod": "^3.22.4"
},
"devDependencies": {
"@silverhand/eslint-config": "5.0.0",
"@silverhand/ts-config": "5.0.0",
"eslint": "^8.44.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"typescript": "^5.3.3"
},
"eslintConfig": {
"extends": "@silverhand",
"rules": {
"no-template-curly-in-string": "off"
}
},
2021-09-16 16:54:32 +08:00
"prettier": "@silverhand/eslint-config/.prettierrc"
}