forked from FNOSP/App.Bin.CodeEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
16 lines (16 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
16 lines (16 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "code.editor",
"version": "1.5.8",
"changelog": "<div>优化:当 path 为目录时,打开目录</div><div>修复:当大文件加载提示超过1G错误展示成1T</div><div>其他:修改权限为管理员可用,且禁止修改权限,防止权限越权</div>",
"scripts": {
"dev": "node src/app.js",
"install": "npm i --prefix=backend && npm i --prefix=frontend",
"dev:frontend": "npm run dev --prefix=frontend",
"dev:backend": "npm run dev --prefix=backend",
"build:frontend": "npm run build --prefix=frontend",
"build:backend": "npm run build --prefix=backend",
"build:backend:arm": "npm run build:arm --prefix=backend",
"build": "npm run build:frontend && npm run build:backend && fnpack build app",
"build:arm": "npm run build:frontend && npm run build:backend:arm && fnpack build app"
}
}