Skip to content

Commit 665148e

Browse files
author
COOL
committed
add plugin-cli
1 parent 68b9d86 commit 665148e

17 files changed

+1847
-0
lines changed

plugin-cli/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
dist/

plugin-cli/.npmignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
src/
3+
tsconfig.json

plugin-cli/README.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
### COOL-ADMIN
2+
3+
cool-admin一个很酷的后台权限管理系统,开源免费,模块化、插件化、极速开发CRUD,方便快速构建迭代后台管理系统
4+
5+
大数据、微服务、AI编码快速开发!!!
6+
7+
8+
### 技术栈
9+
10+
- 后端:node.js midway.js koa.js mysql typescript
11+
- 前端:vue.js element-plus jsx pinia vue-router
12+
13+
### 官网
14+
15+
[https://cool-js.com](https://cool-js.com)
16+
17+
18+
### 演示地址
19+
20+
[https://show.cool-admin.com](https://show.cool-admin.com)
21+
22+
- 账户:admin
23+
- 密码:123456
24+
25+
### 项目地址
26+
27+
[https://github.com/cool-team-official/cool-admin-midway](https://github.com/cool-team-official/cool-admin-midway)

plugin-cli/package.json

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "@cool-midway/plugin-cli",
3+
"version": "8.0.0",
4+
"description": "cool-admin midway plugin",
5+
"main": "dist/index.js",
6+
"scripts": {
7+
"build": "tsc"
8+
},
9+
"keywords": [
10+
"cool",
11+
"cool-admin",
12+
"cooljs"
13+
],
14+
"repository": {
15+
"type": "git",
16+
"url": "https://cool-js.com"
17+
},
18+
"bin": {
19+
"cool-plugin-cli": "scripts/index.js"
20+
},
21+
"author": "COOL",
22+
"readme": "README.md",
23+
"license": "MIT",
24+
"dependencies": {
25+
"@cool-midway/cache-manager-fs-hash": "^7.0.0",
26+
"@midwayjs/cache-manager": "^3.20.3",
27+
"@midwayjs/core": "^3.20.3",
28+
"archiver": "^7.0.1",
29+
"esbuild": "^0.25.0",
30+
"esbuild-plugin-copy": "^2.1.1"
31+
},
32+
"devDependencies": {
33+
"@types/node": "^22.13.9",
34+
"typescript": "^5.8.2"
35+
}
36+
}

0 commit comments

Comments
 (0)