0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/toolkit/language-kit/package.json
2022-12-15 01:24:32 +08:00

61 lines
1.6 KiB
JSON

{
"name": "@logto/language-kit",
"version": "1.0.0-beta.29",
"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.cjs",
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"precommit": "lint-staged",
"build": "rm -rf lib/ && rollup -c && tsc -p tsconfig.build.json",
"build:test": "pnpm build",
"lint": "eslint --ext .ts src",
"lint:report": "pnpm lint --format json --output-file report.json",
"prepack": "pnpm build",
"test": "jest",
"test:coverage": "jest --silent --coverage"
},
"engines": {
"node": "^16.13.0 || ^18.12.0"
},
"optionalDependencies": {
"zod": "^3.20.2"
},
"devDependencies": {
"@jest/types": "^29.0.3",
"@rollup/plugin-typescript": "^10.0.1",
"@silverhand/eslint-config": "1.3.0",
"@silverhand/ts-config": "1.2.1",
"@types/jest": "^29.0.3",
"@types/node": "^16.3.1",
"eslint": "^8.21.0",
"jest": "^29.0.3",
"lint-staged": "^13.0.0",
"prettier": "^2.7.1",
"rollup": "^3.6.0",
"ts-jest": "^29.0.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"eslintConfig": {
"extends": "@silverhand"
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"publishConfig": {
"access": "public"
}
}