-
Notifications
You must be signed in to change notification settings - Fork 707
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a089e8
commit f06370e
Showing
1 changed file
with
15 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,18 +6,18 @@ | |
"private": false, | ||
"scripts": { | ||
"i": "pnpm install", | ||
"dev": "vite --mode base", | ||
"ts:check": "vue-tsc --noEmit --skipLibCheck", | ||
"build:pro": "vite build --mode pro", | ||
"build:gitee": "vite build --mode gitee", | ||
"build:dev": "vite build --mode dev", | ||
"build:test": "npm run ts:check && vite build --mode test", | ||
"serve:pro": "vite preview --mode pro", | ||
"serve:dev": "vite preview --mode dev", | ||
"serve:test": "vite preview --mode test", | ||
"npm:check": "npx npm-check-updates", | ||
"clean": "npx rimraf node_modules", | ||
"clean:cache": "npx rimraf node_modules/.cache", | ||
"dev": "pnpm vite --mode base", | ||
"ts:check": "pnpm vue-tsc --noEmit --skipLibCheck", | ||
"build:pro": "pnpm vite build --mode pro", | ||
"build:gitee": "pnpm vite build --mode gitee", | ||
"build:dev": "pnpm vite build --mode dev", | ||
"build:test": "pnpm run ts:check && vite build --mode test", | ||
"serve:pro": "pnpm vite preview --mode pro", | ||
"serve:dev": "pnpm vite preview --mode dev", | ||
"serve:test": "pnpm vite preview --mode test", | ||
"npm:check": "pnpx npm-check-updates", | ||
"clean": "pnpx rimraf node_modules", | ||
"clean:cache": "pnpx rimraf node_modules/.cache", | ||
"lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src", | ||
"lint:format": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,vue,html,md}\"", | ||
"lint:style": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/", | ||
|
@@ -116,8 +116,10 @@ | |
"vite-plugin-svg-icons": "^2.0.1", | ||
"vue-tsc": "^1.8.22" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">= 18.0.0 || >= 20.0.0" | ||
"node": ">=18.0.0", | ||
"pnpm": ">=8.1.0" | ||
}, | ||
"license": "MIT", | ||
"repository": { | ||
|