0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/phrases/package.json

48 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "@logto/phrases",
2022-09-07 11:21:37 -05:00
"version": "1.0.0-beta.9",
"description": "Logto shared phrases (l10n).",
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",
"main": "lib/index.js",
"private": true,
"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": {
"node": "^16.0.0"
},
"bugs": {
"url": "https://github.com/logto-io/logto/issues"
},
"dependencies": {
"@logto/core-kit": "^1.0.0-beta.11",
"@silverhand/essentials": "^1.2.1"
},
"devDependencies": {
"@silverhand/eslint-config": "1.0.0",
"@silverhand/ts-config": "1.0.0",
"eslint": "^8.21.0",
"lint-staged": "^13.0.0",
"prettier": "^2.7.1",
"typescript": "^4.7.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"
}