@byteluck-fe/model-driven-core-all 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 +11 -0
  2. package/package.json +31 -0
  3. package/src/index.ts +9 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # `runtime-all`
2
+
3
+ > TODO: description
4
+
5
+ ## Usage
6
+
7
+ ```
8
+ const runtimeAll = require('runtime-all');
9
+
10
+ // TODO: DEMONSTRATE API
11
+ ```
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@byteluck-fe/model-driven-core-all",
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/index.d.ts",
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-shared": "^1.3.0-beta.22",
28
+ "@byteluck-fe/model-driven-upgrade": "^1.3.0-beta.24"
29
+ },
30
+ "gitHead": "ff1ff4bb662ce059bb4a4b75ef53ef5b88247b67"
31
+ }
package/src/index.ts ADDED
@@ -0,0 +1,9 @@
1
+ export * from '@byteluck-fe/model-driven-core'
2
+ export * from '@byteluck-fe/model-driven-shared'
3
+ export * from '@byteluck-fe/model-driven-controls'
4
+ export * from '@byteluck-fe/model-driven-upgrade'
5
+ export * from './loadRemoteScripts'
6
+ export * from './registerCustomControls'
7
+ export * from './upgradeCustomControlSchema'
8
+ export * from './registerByteluckControls'
9
+ export * from './getHackerControl'