-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.68 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "ui",
"version": "0.0.0",
"description": "",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks && pnpm run stub-root",
"biome": "biome migrate eslint --write --include-inspired && biome migrate prettier --write",
"format": "biome format --write .",
"format-check": "biome format .",
"fix": "biome lint --write .",
"lint": "biome lint .",
"typecheck": "echo typecheck",
"clean": "turbo run clean && rimraf node_modules .turbo",
"stub-root": "turbo run stub",
"build": "turbo run build",
"dev": "turbo run dev",
"test-unit": "echo test-unit",
"test-e2e": "echo test-e2e",
"test-docs": "pnpm run docs-build",
"test": "run-s test-unit test-e2e test-docs",
"docs": "pnpm --filter=docs run docs",
"docs-build": "pnpm --filter=docs run docs-build",
"docs-serve": "pnpm --filter=docs run docs-serve",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"update-version": "tsx scripts/update-version.ts",
"publish-script": "tsx scripts/publish-script.ts",
"update-deps": "ncu -uws -x [eslint,] && ncu -u -x eslint",
"sync-antd": "pnpm exec cargo run -p replace-script",
"generate-api": "pnpm exec cargo run -p generate-api"
},
"keywords": [],
"author": "baicie",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"devDependencies": {
"@bees-ui/internal-build": "workspace:^",
"@bees-ui/internal-path": "workspace:^",
"@biomejs/biome": "^1.9.2",
"@codecov/webpack-plugin": "^1.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@pnpm/find-workspace-packages": "^6.0.9",
"@preact/preset-vite": "^2.9.1",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.7",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"@types/stylis": "^4.2.6",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@umijs/fabric": "^4.0.1",
"adm-zip": "^0.5.16",
"antd": "^5.21.0",
"chalk": "^5.3.0",
"clsx": "^2.1.1",
"consola": "^3.2.3",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-import-x": "^4.3.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-lodash": "^8.0.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-unicorn": "^55.0.0",
"execa": "^9.4.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"gh-pages": "^6.1.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"npm-run-all2": "^6.2.3",
"ora": "^8.1.0",
"picocolors": "^1.1.0",
"preact": "^10.24.0",
"preact-custom-element": "^4.3.0",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"request": "^2.88.2",
"rimraf": "^6.0.1",
"simple-git": "^3.27.0",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"turbo": "^2.1.2",
"typescript": "5.6.2",
"typescript-eslint": "^8.6.0",
"unbuild": "^2.0.0",
"vite": "^5.4.7"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": ["biome format --write .", "biome lint ."]
},
"pnpm": {
"patchedDependencies": {}
},
"ncu": {
"reject": ["eslint"]
}
}