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

54 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "@logto/phrases",
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).",
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": {
2023-01-07 20:42:10 +08:00
"node": "^18.12.0"
2022-04-24 09:50:59 +08:00
},
"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:*",
2023-02-18 13:34:52 +08:00
"@silverhand/essentials": "2.2.0",
2022-12-14 13:23:59 +08:00
"zod": "^3.20.2"
},
"devDependencies": {
2023-02-16 23:49:03 +08:00
"@silverhand/eslint-config": "2.0.1",
2023-02-17 13:41:05 +08:00
"@silverhand/ts-config": "2.0.3",
2023-02-16 23:49:03 +08:00
"eslint": "^8.34.0",
"lint-staged": "^13.0.0",
2023-02-16 23:49:03 +08:00
"prettier": "^2.8.2",
2022-12-12 21:15:09 +08:00
"typescript": "^4.9.4"
},
"eslintConfig": {
2021-09-16 16:54:32 +08:00
"extends": "@silverhand"
},
2021-09-16 16:54:32 +08:00
"prettier": "@silverhand/eslint-config/.prettierrc"
}