mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-11 18:42:56 +00:00
149 lines
4.4 KiB
JSON
149 lines
4.4 KiB
JSON
{
|
|
"name": "@alilc/lowcode-code-generator",
|
|
"version": "1.1.3",
|
|
"description": "出码引擎 for LowCode Engine",
|
|
"license": "MIT",
|
|
"main": "lib/index.js",
|
|
"module": "es/index.js",
|
|
"typings": "types/index.d.ts",
|
|
"files": [
|
|
"bin",
|
|
"lib",
|
|
"es",
|
|
"demo",
|
|
"dist",
|
|
"types",
|
|
"standalone",
|
|
"standalone-worker",
|
|
"standalone-loader",
|
|
"loader",
|
|
"CHANGELOG.md",
|
|
"README.md",
|
|
"CONTRIBUTING.md",
|
|
"example-schema.json",
|
|
"example-schema.json5"
|
|
],
|
|
"bin": {
|
|
"lowcode-code-generator": "bin/lowcode-code-generator.js"
|
|
},
|
|
"scripts": {
|
|
"start": "jest --watchAll",
|
|
"build": "npm run clean && node scripts/build",
|
|
"build:standalone": "node scripts/build-standalone",
|
|
"clean": "rimraf es lib dist types generated demo coverage output test-cases/*/*/actual",
|
|
"lint": "eslint --ext .jsx,.js,.ts,.tsx src/",
|
|
"lintfix": "eslint --ext .jsx,.js,.ts,.tsx --fix src/",
|
|
"check:types": "tsc --noEmit",
|
|
"template": "node ./scripts/build-template-static-files.js",
|
|
"test": "npm run test:normal && npm run test:standalone",
|
|
"test:normal": "jest",
|
|
"test:standalone": "node scripts/test-standalone",
|
|
"test:cov": "jest --coverage",
|
|
"test:update-snapshots": "cross-env UPDATE_EXPECTED=true jest -u",
|
|
"analyze:standalone": "ANALYZE=true node scripts/build-standalone",
|
|
"release:beta": "standard-version -t @alilc/lowcode-code-generator\\@ -r patch --prerelease beta && git push --follow-tags && npm publish --tag beta",
|
|
"release:patch": "standard-version -t @alilc/lowcode-code-generator\\@ -r patch && git push --follow-tags && npm publish",
|
|
"release:minor": "standard-version -t @alilc/lowcode-code-generator\\@ -r minor && git push --follow-tags && npm publish",
|
|
"prepublishOnly": "npm run build",
|
|
"demo": "node bin/lowcode-code-generator.js -i example-schema.json -o demo -s icejs"
|
|
},
|
|
"standard-version": {
|
|
"skip": {
|
|
"changelog": true
|
|
}
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{js,jsx,ts,tsx}": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"@alilc/lowcode-types": "^1.0.0",
|
|
"@babel/generator": "^7.12.11",
|
|
"@babel/parser": "^7.12.11",
|
|
"@babel/runtime": "^7.12.5",
|
|
"@babel/traverse": "^7.12.12",
|
|
"@babel/types": "^7.12.12",
|
|
"@types/debug": "^4.1.7",
|
|
"@types/fs-extra": "^9.0.12",
|
|
"@types/glob": "^7.2.0",
|
|
"@types/lodash": "^4.14.162",
|
|
"@types/node-fetch": "2.x",
|
|
"@types/qs": "^6.9.6",
|
|
"@types/semver": "^7.3.4",
|
|
"buffer": "^6.0.3",
|
|
"chalk": "^4.1.0",
|
|
"change-case": "^3.1.0",
|
|
"commander": "^6.1.0",
|
|
"debug": "^4.3.2",
|
|
"fp-ts": "^2.11.9",
|
|
"fs-extra": "9.x",
|
|
"glob": "^7.2.0",
|
|
"html-entities": "^2.3.2",
|
|
"json5": "^2.2.0",
|
|
"jsonc": "^2.0.0",
|
|
"jszip": "^3.5.0",
|
|
"lodash": "^4.17.21",
|
|
"lodash-es": "^4.17.21",
|
|
"mock-fs": "^5.1.2",
|
|
"moment": "^2.29.1",
|
|
"nanomatch": "^1.2.13",
|
|
"node-fetch": "2.x",
|
|
"path-browserify": "^1.0.1",
|
|
"prettier": "^2.5.1",
|
|
"qs": "^6.10.1",
|
|
"semver": "^7.3.4",
|
|
"short-uuid": "^3.1.1",
|
|
"babel-jest": "^26.5.2",
|
|
"tslib": "^2.3.1"
|
|
},
|
|
"browser": {
|
|
"path": "path-browserify",
|
|
"lodash": "lodash-es",
|
|
"prettier": "prettier/standalone"
|
|
},
|
|
"devDependencies": {
|
|
"@iceworks/spec": "^1.4.2",
|
|
"@types/babel__traverse": "^7.11.0",
|
|
"@types/jest": "^27.0.2",
|
|
"@types/lodash": "^4.14.162",
|
|
"@types/node": "^14.14.20",
|
|
"@types/prettier": "^2.4.2",
|
|
"@typescript-eslint/eslint-plugin": "^4.12.0",
|
|
"@typescript-eslint/parser": "^4.12.0",
|
|
"concurrently": "^6.5.1",
|
|
"cross-env": "^7.0.3",
|
|
"esbuild": "^0.14.5",
|
|
"esbuild-plugin-alias": "^0.2.1",
|
|
"esbuild-plugin-ignore": "^1.1.0",
|
|
"esbuild-visualizer": "^0.3.1",
|
|
"eslint": "^7.17.0",
|
|
"eslint-config-ali": "^11.4.1",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-react": "^7.22.0",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"jest": "^26.5.2",
|
|
"jest-util": "^27.4.2",
|
|
"rimraf": "^3.0.2",
|
|
"standard-version": "^9.1.1",
|
|
"ts-jest": "^26.5.2",
|
|
"ts-loader": "^6.2.2",
|
|
"ts-node": "^8.10.2",
|
|
"tsconfig-paths": "^3.9.0",
|
|
"typescript": "4.x",
|
|
"yargs-parser": "^20.2.9"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"repository": "git@github.com:alibaba/lowcode-engine.git"
|
|
}
|