-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
88 lines (88 loc) · 3.16 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
{
"version": "1.0.2",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "pnpm run clean && pnpm run to:build build",
"publish": "bash build/scripts/publish.sh",
"clean": "rimraf dist",
"docs:dev": "pnpm run -C docs dev",
"docs:build": "pnpm run -C docs build",
"docs:preview": "pnpm run -C docs preview",
"docs:baiduPush": "pnpm run -C docs baiduPush",
"demo:base": "pnpm run -C demo/docs-base",
"demo:locales": "pnpm run -C demo/docs-locales",
"demo:localesRoot": "pnpm run -C demo/docs-locales-root",
"to:build": "pnpm run -C build",
"stub": "pnpm run to:build stub && pnpm run packages:stub && pnpm run plugins:stub",
"packages:stub": "pnpm -r --filter=./packages/* run stub",
"plugins:stub": "pnpm -r --filter=./plugins/* run stub",
"plugins:build": "pnpm -r --filter=./plugins/* run build",
"lint:lint-staged": "lint-staged -c .husky/lintstagedrc.js",
"lint:prettier": "prettier ./**/*.{js,jsx,ts,tsx,vue,css,less,sass,scss} --write",
"lint:eslint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue --fix",
"lint": "yarn lint:eslint && yarn lint:prettier",
"prepare": "husky",
"cs": "pnpm changeset",
"cs:version": "pnpm changeset version",
"cs:release": "pnpm run plugin:build && changeset publish",
"cs:pre": "changeset pre enter",
"cs:pre:exit": "changeset pre enter exit",
"release": "standard-version",
"release-major": "standard-version --release-as major",
"release-minor": "standard-version --release-as minor",
"release-patch": "standard-version --release-as patch",
"release-as": "standard-version --release-as",
"release-prerelease": "standard-version --prerelease",
"cz": "git add . && git-cz",
"czp": "git add . && git-cz && git push"
},
"dependencies": {
"@teek/components": "workspace:*",
"@teek/config": "workspace:*",
"@teek/helper": "workspace:*",
"@teek/hooks": "workspace:*",
"@teek/locale": "workspace:*",
"@teek/markdown": "workspace:*",
"@teek/static": "workspace:*",
"@teek/theme-chalk": "workspace:*"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.24.0",
"@types/node": "^22.14.0",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"@vue/compiler-core": "^3.5.13",
"@vue/compiler-dom": "^3.5.13",
"@vue/reactivity": "^3.5.13",
"@vue/runtime-core": "^3.5.13",
"@vue/runtime-dom": "^3.5.13",
"commitizen": "^4.3.1",
"cz-git": "^1.11.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-vue": "^10.0.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"typescript": "^5.8.3",
"unbuild": "^3.5.0",
"vue": "catalog:",
"vue-eslint-parser": "^10.1.3",
"vue-tsc": "^2.2.8"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}