mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-11 18:42:56 +00:00
58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "@alilc/lowcode-plugin-designer",
|
|
"version": "2.0.0-beta.0",
|
|
"description": "alibaba lowcode editor designer plugin",
|
|
"type": "module",
|
|
"main": "dist/designer.cjs",
|
|
"module": "dist/designer.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/designer.js",
|
|
"require": "./dist/designer.cjs",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"package.json"
|
|
],
|
|
"scripts": {
|
|
"build:target": "vite build",
|
|
"build:dts": "tsc -p tsconfig.declaration.json && node ../../scripts/rollup-dts.mjs",
|
|
"test": "vitest"
|
|
},
|
|
"keywords": [
|
|
"lowcode",
|
|
"editor"
|
|
],
|
|
"author": "xiayang.xy",
|
|
"dependencies": {
|
|
"@alilc/lowcode-designer": "workspace:*",
|
|
"@alilc/lowcode-editor-core": "workspace:*",
|
|
"@alilc/lowcode-utils": "workspace:*",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.0",
|
|
"@types/react-dom": "^18.2.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"repository": {
|
|
"type": "http",
|
|
"url": "https://github.com/alibaba/lowcode-engine/tree/main/packages/plugin-designer"
|
|
},
|
|
"gitHead": "2669f179e6f899d395ce1942d0fe04f9c5ed48a6",
|
|
"bugs": "https://github.com/alibaba/lowcode-engine/issues",
|
|
"homepage": "https://github.com/alibaba/lowcode-engine/#readme"
|
|
}
|