Files
Memoh/package.json
T
Quincy 68896cd729 Refector/lint (#285)
* # This is a combination of 6 commits.
# This is the 1st commit message:

feat(channel): add WeChat (weixin) adapter with QR code (#278)

* feat(channel): add WeChat (weixin) adapter with QR code

* fix(channel): fix weixin block streaming

* chore(channel): update weixin logo
# The commit message #2 will be skipped:

# build: 修改lint配置

# The commit message #3 will be skipped:

# build: 修改lint配置

# The commit message #4 will be skipped:

# 修改lint配置

# The commit message #5 will be skipped:

# 检测类型错误

# The commit message #6 will be skipped:

# ts类型检测错误

* feat(husky): update linting configuration to improve pre-commit checks

---------

Co-authored-by: 晨苒 <16112591+chen-ran@users.noreply.github.com>
2026-03-24 16:06:41 +08:00

52 lines
1.2 KiB
JSON

{
"name": "@memoh/monorepo",
"private": true,
"version": "0.5.0",
"scripts": {
"web:dev": "pnpm --filter @memoh/web dev",
"web:build": "pnpm --filter @memoh/web build",
"web:start": "pnpm --filter @memoh/web start",
"docs:dev": "pnpm --filter @memoh/docs dev",
"docs:build": "pnpm --filter @memoh/docs build",
"docs:preview": "pnpm --filter @memoh/docs preview",
"release": "bumpp",
"generate-sdk": "openapi-ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@hey-api/openapi-ts": "0.92.3",
"@types/node": "^25.0.3",
"bumpp": "^10.4.1",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.6.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16",
"vue-eslint-parser": "^10.2.0"
},
"dependencies": {
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.8"
},
"lint-staged": {
"*.{vue,js,ts,md,json,scss}": [
"eslint --fix --concurrency=auto"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
}
}