-
-
Notifications
You must be signed in to change notification settings - Fork 16
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
Showing
6 changed files
with
359 additions
and
403 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
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 |
---|---|---|
|
@@ -4,7 +4,18 @@ | |
"version": "0.2.27", | ||
"description": "File system based routing for uni-app applications using Vite", | ||
"author": "KeJun", | ||
"maintainers": [ | ||
{ | ||
"email": "[email protected]", | ||
"name": "ModyQyW", | ||
"url": "https://modyyw.top" | ||
} | ||
], | ||
"license": "MIT", | ||
"funding": [ | ||
"https://afdian.net/a/kejun", | ||
"https://github.com/ModyQyW/sponsors" | ||
], | ||
"homepage": "https://github.com/uni-helper/vite-plugin-uni-pages#readme", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -37,7 +48,11 @@ | |
], | ||
"scripts": { | ||
"build": "unbuild", | ||
"stub": "unbuild --stub" | ||
"stub": "unbuild --stub", | ||
"prepublishOnly": "pnpm build" | ||
}, | ||
"peerDependencies": { | ||
"vite": "^5.0.0" | ||
}, | ||
"dependencies": { | ||
"@uni-helper/uni-env": "^0.1.4", | ||
|
@@ -57,6 +72,7 @@ | |
"@antfu/utils": "^0.7.10", | ||
"@types/debug": "^4.1.12", | ||
"@types/lodash.groupby": "^4.6.9", | ||
"@types/node": "^20.15.0" | ||
"@types/node": "^20.15.0", | ||
"vite": "^5.4.1" | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -3,7 +3,18 @@ | |
"version": "0.2.27", | ||
"description": "Schema for uni-app pages.json", | ||
"author": "KeJun", | ||
"maintainers": [ | ||
{ | ||
"email": "[email protected]", | ||
"name": "ModyQyW", | ||
"url": "https://modyyw.top" | ||
} | ||
], | ||
"license": "MIT", | ||
"funding": [ | ||
"https://afdian.net/a/kejun", | ||
"https://github.com/ModyQyW/sponsors" | ||
], | ||
"homepage": "https://github.com/uni-helper/vite-plugin-uni-pages#readme", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -14,8 +25,8 @@ | |
"jsonschema" | ||
], | ||
"scripts": { | ||
"generate": "ts-json-schema-generator -p \"../core/src/config/types/index.ts\" -t \"PagesConfig\" -o \"schema.json\" --no-type-check", | ||
"prepublishOnly": "pnpm generate" | ||
"build": "ts-json-schema-generator -p \"../core/src/config/types/index.ts\" -t \"PagesConfig\" -o \"schema.json\" --no-type-check", | ||
"prepublishOnly": "pnpm build" | ||
}, | ||
"devDependencies": { | ||
"ts-json-schema-generator": "^2.3.0" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,18 @@ | |
"version": "0.2.27", | ||
"description": "Volar plugin for uni-pages route custom block in Vue SFC", | ||
"author": "KeJun", | ||
"maintainers": [ | ||
{ | ||
"email": "[email protected]", | ||
"name": "ModyQyW", | ||
"url": "https://modyyw.top" | ||
} | ||
], | ||
"license": "MIT", | ||
"funding": [ | ||
"https://afdian.net/a/kejun", | ||
"https://github.com/ModyQyW/sponsors" | ||
], | ||
"homepage": "https://github.com/uni-helper/vite-plugin-uni-pages#readme", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -39,6 +50,14 @@ | |
"build": "unbuild", | ||
"prepublishOnly": "pnpm build" | ||
}, | ||
"peerDependencies": { | ||
"@volar/language-service": "^1.11.1" | ||
}, | ||
"peerDependenciesMeta": { | ||
"@volar/language-service": { | ||
"optional": true | ||
} | ||
}, | ||
"dependencies": { | ||
"@uni-helper/pages-json-schema": "workspace:^", | ||
"vscode-json-languageservice": "^5.4.0", | ||
|
@@ -47,7 +66,6 @@ | |
}, | ||
"devDependencies": { | ||
"@types/json-schema": "^7.0.15", | ||
"@volar/language-service": "1.10.3", | ||
"unbuild": "^2.0.0" | ||
"@volar/language-service": "^1.11.1" | ||
} | ||
} |
Oops, something went wrong.