mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
93bc915609
* chore(deps): update silverhand configs monorepo packages to v3.0.0 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Gao Sun <gao@silverhand.io>
60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "@logto/language-kit",
|
|
"version": "1.0.0",
|
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
|
"homepage": "https://github.com/logto-io/toolkit#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/logto-io/toolkit.git"
|
|
},
|
|
"license": "MPL-2.0",
|
|
"type": "module",
|
|
"main": "./lib/index.js",
|
|
"exports": {
|
|
"default": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"import": "./lib/index.js"
|
|
},
|
|
"types": "./lib/index.d.ts",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"precommit": "lint-staged",
|
|
"build": "rm -rf lib/ && tsc -p tsconfig.build.json",
|
|
"build:test": "pnpm build -p tsconfig.test.json --sourcemap",
|
|
"lint": "eslint --ext .ts src",
|
|
"lint:report": "pnpm lint --format json --output-file report.json",
|
|
"prepack": "pnpm build",
|
|
"test:only": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
"test": "pnpm build:test && pnpm test:only",
|
|
"test:ci": "pnpm test:only",
|
|
"test:coverage": "pnpm test:only --silent --coverage"
|
|
},
|
|
"engines": {
|
|
"node": "^18.12.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"zod": "^3.20.2"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/types": "^29.0.3",
|
|
"@silverhand/eslint-config": "3.0.0",
|
|
"@silverhand/ts-config": "3.0.0",
|
|
"@types/jest": "^29.4.0",
|
|
"@types/node": "^18.11.18",
|
|
"eslint": "^8.34.0",
|
|
"jest": "^29.5.0",
|
|
"lint-staged": "^13.0.0",
|
|
"prettier": "^2.8.2",
|
|
"tslib": "^2.4.1",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "@silverhand"
|
|
},
|
|
"prettier": "@silverhand/eslint-config/.prettierrc",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|