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

53 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "@logto/phrases",
2023-03-30 06:44:40 -05:00
"version": "1.1.0",
2022-10-19 02:10:50 -05:00
"description": "Logto shared phrases (i18n).",
2022-04-24 22:26:41 -05:00
"author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme",
2021-08-11 09:12:36 -05:00
"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"
},
"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",
2022-05-05 05:26:30 -05:00
"lint:report": "pnpm lint --format json --output-file report.json",
2021-07-29 04:46:28 -05:00
"prepack": "pnpm build"
},
2022-04-23 20:50:59 -05:00
"engines": {
2023-01-07 07:42:10 -05:00
"node": "^18.12.0"
2022-04-23 20:50:59 -05:00
},
"bugs": {
"url": "https://github.com/logto-io/logto/issues"
},
"dependencies": {
"@logto/language-kit": "workspace:^",
"@silverhand/essentials": "^2.5.0",
2022-12-14 00:23:59 -05:00
"zod": "^3.20.2"
},
"devDependencies": {
"@silverhand/eslint-config": "3.0.0",
"@silverhand/ts-config": "3.0.0",
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",
"typescript": "^5.0.0"
},
"eslintConfig": {
2021-09-16 03:54:32 -05:00
"extends": "@silverhand"
},
2021-09-16 03:54:32 -05:00
"prettier": "@silverhand/eslint-config/.prettierrc"
}