-
Notifications
You must be signed in to change notification settings - Fork 0
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
8 changed files
with
57 additions
and
18 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Cordis WebUI | ||
|
||
## Packages | ||
|
||
### Core packages | ||
|
||
- @cordisjs/client | ||
- @cordisjs/components | ||
- @cordisjs/registry | ||
|
||
### Official plugins | ||
|
||
- @cordisjs/plugin-config | ||
- @cordisjs/plugin-insight | ||
- @cordisjs/plugin-webui |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@cordisjs/client", | ||
"description": "Koishi Console Client", | ||
"version": "0.28.3", | ||
"version": "0.1.0", | ||
"type": "module", | ||
"exports": { | ||
".": "./client/index.ts", | ||
|
@@ -24,7 +24,7 @@ | |
"cordis-webui": "bin.js" | ||
}, | ||
"author": "Shigma <[email protected]>", | ||
"license": "AGPL-3.0", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/cordisjs/webui.git", | ||
|
@@ -44,7 +44,7 @@ | |
"build" | ||
], | ||
"dependencies": { | ||
"@cordisjs/components": "1.5.11", | ||
"@cordisjs/components": "0.1.0", | ||
"@maikolib/vite-plugin-yaml": "^1.0.1", | ||
"@satorijs/protocol": "^1.3.1", | ||
"@vitejs/plugin-vue": "^4.6.2", | ||
|
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 |
---|---|---|
@@ -1,14 +1,15 @@ | ||
{ | ||
"name": "@cordisjs/components", | ||
"description": "Client Components for Cordis WebUI", | ||
"version": "1.5.11", | ||
"version": "0.1.0", | ||
"type": "module", | ||
"main": "client/index.ts", | ||
"files": [ | ||
"client", | ||
"tsconfig.client.json" | ||
], | ||
"author": "Shigma <[email protected]>", | ||
"license": "AGPL-3.0", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/cordisjs/webui.git", | ||
|
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 |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
"dist" | ||
], | ||
"author": "Shigma <[email protected]>", | ||
"license": "AGPL-3.0", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/cordisjs/webui.git", | ||
|
@@ -48,20 +48,21 @@ | |
}, | ||
"service": { | ||
"required": [ | ||
"console" | ||
"webui" | ||
] | ||
} | ||
}, | ||
"peerDependencies": { | ||
"@cordisjs/loader": "^0.9.0", | ||
"@cordisjs/plugin-webui": "^0.28.3", | ||
"@cordisjs/plugin-webui": "^0.1.0", | ||
"cordis": "^3.14.0" | ||
}, | ||
"devDependencies": { | ||
"@cordisjs/client": "^0.28.3", | ||
"@cordisjs/plugin-hmr": "^0.2.0" | ||
"@cordisjs/client": "^0.1.0", | ||
"@cordisjs/plugin-hmr": "^0.2.1" | ||
}, | ||
"dependencies": { | ||
"@cordisjs/registry": "^7.0.3" | ||
"@cordisjs/registry": "^7.0.3", | ||
"cosmokit": "^1.6.2" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
"src" | ||
], | ||
"author": "Shigma <[email protected]>", | ||
"license": "AGPL-3.0", | ||
"license": "MIT", | ||
"scripts": { | ||
"lint": "eslint src --ext .ts" | ||
}, | ||
|
@@ -38,16 +38,16 @@ | |
}, | ||
"service": { | ||
"required": [ | ||
"console" | ||
"webui" | ||
] | ||
} | ||
}, | ||
"peerDependencies": { | ||
"@cordisjs/plugin-webui": "^0.28.3", | ||
"@cordisjs/plugin-webui": "^0.1.0", | ||
"cordis": "^3.14.0" | ||
}, | ||
"devDependencies": { | ||
"@cordisjs/client": "^0.28.3", | ||
"@cordisjs/client": "^0.1.0", | ||
"@types/d3-force": "^3.0.9", | ||
"d3-force": "^3.0.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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"rewrites": [{ | ||
"source": "/(.*)", | ||
"destination": "/index.html" | ||
}], | ||
"github": { | ||
"silent": true | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
- name: yakumo | ||
config: | ||
pipeline: | ||
build: | ||
- tsc | ||
- esbuild | ||
- client | ||
clean: | ||
- tsc --clean | ||
- name: yakumo-esbuild | ||
- name: yakumo-mocha | ||
- name: yakumo-tsc | ||
- name: '@cordisjs/client/lib' |