-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.8 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.8 KB
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
{
"type": "module",
"private": true,
"packageManager": "pnpm@10.6.5",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "turbo run build",
"build:core": "turbo run build --filter=vue-element-plus-x",
"publish:core": "cd packages/core && npm publish",
"publish:core:beta": "cd packages/core && npm publish --tag beta",
"dev:core": "turbo run dev --filter=vue-element-plus-x",
"build:storybook": "pnpm run build:storybook --filter=vue-element-plus-x",
"dev:metadata": "turbo run dev --filter=element-plus-x-metadata",
"build:metadata": "turbo run build --filter=element-plus-x-metadata",
"dev:docs": "turbo run dev --filter=docs",
"build:docs": "turbo run build --filter=docs",
"ci:publish": "pnpm changeset publish -r --filter=vue-element-plus-x --otp=${NPM_OTP:-}",
"dev": "npm run dev:playground",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"lint": "turbo run lint",
"lint:fix": "oxlint ./packages --fix && eslint . --fix",
"lint:ic": "eslint --inspect-config",
"eslint": "eslint .",
"eslint:fix": "eslint --fix",
"lint-staged": "lint-staged",
"prepare": "husky",
"cz": "cz"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.1",
"@changesets/cli": "^2.29.5",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"commitizen": "^4.3.1",
"cz-git": "^1.11.2",
"eslint": "^9.30.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-oxlint": "^0.16.12",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"oxlint": "^0.16.12",
"prettier": "^3.6.2",
"stylelint": "^16.21.0",
"turbo": "^2.5.4",
"typescript": "5.8.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}