diff --git a/abc.json b/abc.json
deleted file mode 100644
index 0d707e80a..000000000
--- a/abc.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "name": "lowcode-engine",
- "assets": {
- "type": "command",
- "command": {
- "cmd": [
- "./scripts/deploy.sh $BUILD_DEST"
- ]
- }
- }
-}
diff --git a/deploy-space/lerna.json b/deploy-space/lerna.json
deleted file mode 100644
index 31d37d2d3..000000000
--- a/deploy-space/lerna.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "version": "independent",
- "npmClient": "yarn",
- "registry": "http://registry.npm.alibaba-inc.com",
- "useWorkspaces": true,
- "packages": [
- "packages/*"
- ]
-}
diff --git a/deploy-space/package.json b/deploy-space/package.json
deleted file mode 100644
index 37698f1dc..000000000
--- a/deploy-space/package.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "private": true,
- "workspaces": {
- "packages": [
- "packages/*"
- ],
- "nohoist": [
- "**/css-modules-typescript-loader",
- "**/@alife/theme-lowcode-*"
- ]
- },
- "dependencies": {
- "tslib": "^1.11.1",
- "typescript": "^3.8.3"
- }
-}
diff --git a/deploy-space/static/index.html b/deploy-space/static/index.html
deleted file mode 100644
index e7ff4ba73..000000000
--- a/deploy-space/static/index.html
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
-
- LowCodeEngine Editor DEMO
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/deploy-space/static/preview.html b/deploy-space/static/preview.html
deleted file mode 100644
index ab793bceb..000000000
--- a/deploy-space/static/preview.html
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
-
-
- LowCodeEngine Editor DEMO
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/deploy-space/tsconfig.json b/deploy-space/tsconfig.json
deleted file mode 100644
index 005c63fad..000000000
--- a/deploy-space/tsconfig.json
+++ /dev/null
@@ -1,40 +0,0 @@
-{
- "compilerOptions": {
- "declaration": false,
- "lib": ["es2015", "dom"],
- // Target latest version of ECMAScript.
- "target": "esnext",
- // Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'.
- "module": "esnext",
- // Search under node_modules for non-relative imports.
- "moduleResolution": "node",
- // Process & infer types from .js files.
- "allowJs": true,
- // Report errors in .js files.
- "checkJs": false,
- // Don't emit; allow Babel to transform files.
- // "noEmit": true,
- // Enable strictest settings like strictNullChecks & noImplicitAny.
- "strict": false,
- // Allow default imports from modules with no default export. This does not affect code emit, just typechecking.
- "allowSyntheticDefaultImports": true,
- // Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'.
- "esModuleInterop": true,
- // Specify JSX code generation: 'preserve', 'react-native', or 'react'.
- "jsx": "preserve",
- // Import emit helpers (e.g. __extends, __rest, etc..) from tslib
- "importHelpers": true,
- // Enables experimental support for ES7 decorators.
- "experimentalDecorators": true,
- // Generates corresponding .map file.
- "sourceMap": false,
- // Disallow inconsistently-cased references to the same file.
- "forceConsistentCasingInFileNames": true,
- // Allow json import
- "resolveJsonModule": true,
- // skip type checking of declaration files
- "skipLibCheck": true,
- "outDir": "lib"
- },
- "exclude": ["**/test", "**/lib", "**/es", "node_modules"]
-}
diff --git a/index.ts b/index.ts
deleted file mode 100644
index 362b5d8b6..000000000
--- a/index.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import renderer from './packages/react-simulator-renderer/src/renderer';
-
-if (typeof window !== 'undefined') {
- (window as any).SimulatorRenderer = renderer;
-}
-
-export default renderer;