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

84 lines
2.2 KiB
JSON
Raw Normal View History

2022-12-14 00:23:59 -05:00
{
"name": "@logto/core-kit",
2024-04-10 08:27:24 -05:00
"version": "2.4.0",
2022-12-14 00:23:59 -05:00
"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",
2023-01-03 02:41:29 -05:00
"main": "./lib/index.js",
2022-12-14 00:23:59 -05:00
"exports": {
".": {
"default": "./lib/index.js",
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
},
"./declaration": "./declaration/index.ts",
"./scss/*": "./scss/*.scss",
"./custom-jwt": {
"node": "./lib/custom-jwt/index.js",
"types": "./lib/custom-jwt/index.d.ts"
}
2022-12-14 00:23:59 -05:00
},
"types": "./lib/index.d.ts",
"files": [
"declaration",
"lib",
"scss"
],
"scripts": {
"precommit": "lint-staged",
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput --incremental",
2023-01-03 02:41:29 -05:00
"build": "rm -rf lib/ && tsc -p tsconfig.build.json",
"build:test": "pnpm build",
2022-12-14 00:23:59 -05:00
"lint": "eslint --ext .ts src",
"lint:report": "pnpm lint --format json --output-file report.json",
"prepack": "pnpm build",
"stylelint": "stylelint \"scss/**/*.scss\"",
2024-03-27 23:07:54 -05:00
"test": "vitest src",
"test:ci": "pnpm run test --silent --coverage"
2022-12-14 00:23:59 -05:00
},
"engines": {
"node": "^20.9.0"
2022-12-14 00:23:59 -05:00
},
"dependencies": {
2024-02-08 00:18:42 -05:00
"@logto/language-kit": "workspace:^1.1.0",
"@logto/shared": "workspace:^3.1.0",
"@silverhand/essentials": "^2.9.0",
"color": "^4.2.3"
2022-12-14 12:24:32 -05:00
},
"optionalDependencies": {
"zod": "^3.22.4"
2022-12-14 00:23:59 -05:00
},
"devDependencies": {
"@silverhand/eslint-config": "6.0.1",
"@silverhand/eslint-config-react": "6.0.2",
"@silverhand/ts-config": "6.0.0",
"@silverhand/ts-config-react": "6.0.0",
2022-12-14 00:23:59 -05:00
"@types/color": "^3.0.3",
"@types/node": "^20.9.5",
"@types/react": "^18.0.31",
2024-03-28 01:04:15 -05:00
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.56.0",
"lint-staged": "^15.0.0",
"postcss": "^8.4.31",
"prettier": "^3.0.0",
"stylelint": "^15.0.0",
2024-03-27 23:07:54 -05:00
"typescript": "^5.3.3",
"vitest": "^1.4.0"
2022-12-14 00:23:59 -05:00
},
"eslintConfig": {
"extends": "@silverhand"
},
"stylelint": {
"extends": "@silverhand/eslint-config-react/.stylelintrc"
},
"prettier": "@silverhand/eslint-config/.prettierrc",
"publishConfig": {
"access": "public"
}
}