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",
2022-11-30 04:11:09 -05:00
"version": "1.0.0-beta.16",
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",
"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": {
2022-11-05 11:29:28 -05:00
"node": "^16.13.0 || ^18.12.0"
2022-04-23 20:50:59 -05:00
},
"bugs": {
"url": "https://github.com/logto-io/logto/issues"
},
"dependencies": {
2022-12-05 22:56:56 -05:00
"@logto/core-kit": "1.0.0-beta.28",
"@logto/language-kit": "1.0.0-beta.28",
2022-10-10 03:28:20 -05:00
"@silverhand/essentials": "^1.3.0",
2022-10-23 23:26:11 -05:00
"zod": "^3.19.1"
},
"devDependencies": {
"@silverhand/eslint-config": "1.3.0",
"@silverhand/ts-config": "1.2.1",
"eslint": "^8.21.0",
"lint-staged": "^13.0.0",
"prettier": "^2.7.1",
2022-12-12 08:15:09 -05:00
"typescript": "^4.9.4"
},
"eslintConfig": {
2021-09-16 03:54:32 -05:00
"extends": "@silverhand"
},
2021-09-16 03:54:32 -05:00
"prettier": "@silverhand/eslint-config/.prettierrc"
}