@byteluck-fe/model-driven-driven 1.3.0-beta.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +13 -0
  2. package/package.json +31 -0
  3. package/src/index.ts +8 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # Driven
2
+ 设计态引擎
3
+
4
+ Builder.ts // 兼容旧版Designer,提供页面初始化
5
+ constants.ts // 常量
6
+ Designer.ts // 旧版designer的实现
7
+ designerUtils.ts // 工具函数
8
+ Driven.ts // 引擎
9
+ EventLogic.ts // 事件管理
10
+ index.ts
11
+ Plugin.ts // 插件
12
+ Store.ts // 仓库
13
+ utils.ts // 工具
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@byteluck-fe/model-driven-driven",
3
+ "version": "1.3.0-beta.25",
4
+ "description": "> TODO: description",
5
+ "author": "郝晨光 <2293885211@qq.com>",
6
+ "homepage": "",
7
+ "license": "ISC",
8
+ "main": "src/index.ts",
9
+ "module": "dist/esm/index.js",
10
+ "umd": "dist/index.umd.js",
11
+ "types": "dist/types",
12
+ "files": [
13
+ "bin",
14
+ "dist",
15
+ "types"
16
+ ],
17
+ "scripts": {
18
+ "compiler": "tsc --emitDeclarationOnly && swc src -d dist/esm -C jsc.target=es5 -D",
19
+ "cleanup": "rimraf ./dist",
20
+ "prepublish": "npm run cleanup && npm run compiler && npm run build",
21
+ "build": "rollup -c",
22
+ "postpublish": "node ../../scripts/postpublish.js"
23
+ },
24
+ "dependencies": {
25
+ "@byteluck-fe/model-driven-controls": "^1.3.0-beta.24",
26
+ "@byteluck-fe/model-driven-core": "^1.3.0-beta.24",
27
+ "@byteluck-fe/model-driven-settings": "^1.3.0-beta.24",
28
+ "@byteluck-fe/model-driven-shared": "^1.3.0-beta.22"
29
+ },
30
+ "gitHead": "ff1ff4bb662ce059bb4a4b75ef53ef5b88247b67"
31
+ }
package/src/index.ts ADDED
@@ -0,0 +1,8 @@
1
+ import Designer, { ToolboxType, DesignerServices } from './Designer'
2
+ export type { ToolboxType, DesignerServices }
3
+ export { Designer }
4
+ export * from './utils'
5
+ export * from './Builder'
6
+ export * from './designerUtils'
7
+ export * from './Driven'
8
+ export * from './Store'