-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.64 KB
/
package.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@real-ui/monorepo",
"type": "module",
"version": "0.0.2",
"packageManager": "[email protected]",
"description": "",
"author": "",
"license": "MIT",
"keywords": [],
"main": "index.js",
"scripts": {
"build:docs": "pnpm -C docs run build",
"build:packages": "pnpm -r --filter=./packages/* run build",
"build": "pnpm clean && pnpm build:packages && pnpm build:docs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "rimraf packages/*/dist --glob",
"dev:docs": "pnpm -C docs run dev",
"dev": "pnpm -C dev-env run dev",
"docs:build": "pnpm -C docs run build",
"docs:dev": "pnpm -C docs run dev",
"docs:preview": "pnpm -C docs run preview",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"postinstall": "npx simple-git-hooks",
"preinstall": "npx only-allow pnpm",
"reset": "pnpm store prune && rm -rf node_modules pnpm-lock.yaml **/node_modules **/pnpm-lock.yaml",
"typecheck": "vue-tsc --noEmit",
"release": "pnpm bumpp -r -x \"pnpm run changelog\" --all && pnpm -r publish && tsx scripts/release.ts"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@types/node": "^22.7.5",
"@unocss/eslint-plugin": "^0.62.4",
"bumpp": "^9.8.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.12.0",
"eslint-plugin-format": "^0.1.2",
"esno": "^4.8.0",
"lint-staged": "^15.2.10",
"real-ui": "workspace:*",
"rimraf": "^6.0.1",
"simple-git": "^3.27.0",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}