forked from element-plus-x/x-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 687 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "x-markdown-monorepo",
"version": "1.0.0",
"private": true,
"description": "A markdown component library for Vue",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean",
"format": "prettier --write \"packages/**/*.{ts,tsx,vue,js,jsx,json,md}\"",
"format:check": "prettier --check \"packages/**/*.{ts,tsx,vue,js,jsx,json,md}\""
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"prettier": "^3.4.2",
"turbo": "^2.3.3"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
}
}