-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.16 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
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
{
"name": "ayu",
"version": "1.0.0",
"private": false,
"packageManager": "pnpm@9.4.0",
"description": "",
"author": "",
"license": "ISC",
"keywords": [],
"main": "index.js",
"type": "module",
"engines": {
"node": ">=18.20.3",
"pnpm": ">=9.4.0"
},
"scripts": {
"build": "turbo build",
"build:all": "cross-env VITE_MODE=prod turbo build:all",
"build:dts": "turbo build:dts",
"build:watch": "turbo build:watch",
"change": "changeset",
"clean": "rd/s/q node_modules",
"cmt": "git add . && git-cz",
"dev": "pnpm -C app/admin dev",
"dev:server": "pnpm -C server dev",
"dev:all": "turbo dev",
"doc": "pnpm -C docs docs:dev --open ",
"lint": "eslint",
"lint:fix": "eslint --fix",
"pge-init": "packages-init",
"pge:format": "syncpack format",
"precommit": "lint-staged",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"release": "pnpm changeset publish --access public",
"start": "pnpm -C packages/utils build",
"vp": "pnpm changeset version"
},
"dependencies": {
"@ayu-mu/common": "workspace:^",
"@ayu-mu/core-common": "workspace:^",
"@ayu-mu/hooks": "workspace:^",
"@ayu-mu/model": "workspace:^",
"@ayu-mu/request": "workspace:^",
"@ayu-mu/scripts": "workspace:^",
"@ayu-mu/theme-chalk": "workspace:^",
"@ayu-mu/tsconfig": "workspace:^",
"@ayu-mu/utils": "workspace:^",
"@changesets/cli": "^2.27.6",
"@element-plus/icons-vue": "^2.3.1",
"axios": "^1.7.2",
"element-plus": "^2.7.2",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"pinia": "^2.1.7",
"vue": "^3.5.12"
},
"devDependencies": {
"@antfu/eslint-config": "^4.13.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@configs/lint": "workspace:^",
"@eslint-react/eslint-plugin": "^1.49.0",
"@iconify/vue": "^4.1.2",
"@microsoft/api-documenter": "^7.25.21",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.28",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/eslint-config-typescript": "^14.5.0",
"@vue/tsconfig": "^0.5.1",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-git": "^1.9.1",
"eslint": "^9.23.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-vue": "^9.24.0",
"husky": "^9.0.11",
"install": "^0.13.0",
"lint-staged": "^15.2.2",
"move-file-cli": "^3.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5",
"sass": "^1.76.0",
"syncpack": "^13.0.0",
"turbo": "^2.3.0",
"typescript": "^5.6.2",
"vite": "^5.4.10",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-sass": "^0.1.0",
"vitest": "^3.2.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pnpm eslint --fix"
],
"*.vue": [
"pnpm eslint --fix"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}