refactor: upgrade project setup (#646)

This commit is contained in:
三咲智子 Kevin Deng
2023-06-22 12:14:02 +08:00
committed by GitHub
parent 687be8aca8
commit dbba3205e4
53 changed files with 6861 additions and 12397 deletions

View File

@ -1,14 +1,13 @@
{
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "pnpm@8.6.2",
"scripts": {
"publish": "lerna publish",
"test": "lerna run test",
"lint": "lerna run lint",
"dev": "node scripts/dev.js",
"site": "node scripts/site.js"
"build": "pnpm run -r build",
"test": "vitest",
"lint": "eslint --cache .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"release": "bumpp -r"
},
"license": "MIT",
"keywords": [
@ -16,13 +15,20 @@
"jsx"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.26.0",
"lerna": "^3.22.1"
},
"resolutions": {
"@types/node": "18.8.0"
"@rollup/plugin-babel": "^6.0.3",
"@types/babel__core": "^7.20.1",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@vitest/coverage-v8": "^0.32.2",
"bumpp": "^9.1.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"jsdom": "^22.1.0",
"prettier": "^2.8.8",
"tsup": "^7.0.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vitest": "^0.32.2"
}
}