{"_id":"@activity-com/hhhhhhhhhh","name":"@activity-com/hhhhhhhhhh","dist-tags":{"latest":"1.0.3"},"versions":{"1.0.3":{"name":"@activity-com/hhhhhhhhhh","version":"1.0.3","author":{"name":"张帆","email":"zhangfan@example.com"},"maintainers":[{"name":"zhangfan999999","email":"356672247@qq.com"}],"description":"## Command","keywords":["activity maker"],"license":"MIT","repository":{"type":"git","url":"https://gitee.com/activity-platform-components/hhhhhhhhhh"},"bugs":{"url":"https://gitee.com/activity-platform-components/hhhhhhhhhh/issues"},"xmc":{"type":"static","platform":"h5","title":"新建组件","preview":"preview.js","setting":"setting.js","defaultData":{"example":"新建组件","logo":{"url":"http://uploads.activity-maker.online/upload/8/27/2023/GKwaIOIFhIX5AAADcwAAVy2f.png","hostIndex":-1,"naturalWidth":114,"naturalHeight":114}},"extra":{"npmsize":32211}},"publishConfig":{"access":"public"},"main":"index.js","module":"index.es.js","jsnext:main":"index.es.js","typings":"types/node/index.d.ts","scripts":{"start":"component-scripts start","build":"component-scripts build","pub":"component-scripts publish","upg":"component-scripts upgrade","commit":"git-cz"},"dependencies":{},"resolutions":{"@types/react":"^17.0.11","@types/react-dom":"^17.0.7","moment":"2.24.0","react-error-overlay":"6.0.9","@types/express-serve-static-core":"4.17.24","@types/babel__traverse":"7.14.2","@types/lodash":"4.14.176","typescript":"3.9.10","@types/node":"17.0.26"},"browserslist":{"production":[">0.2%","not dead","not op_mini all","ie 9"],"development":["last 1 chrome version","last 1 firefox version","last 1 safari version"]},"eslintConfig":{"extends":["react-app"],"rules":{"jsx-a11y/anchor-is-valid":"off"}},"eslintIgnore":["dist"],"gitHooks":{"pre-commit":"lint-staged --allow-empty","commit-msg":"commitlint -E GIT_PARAMS"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"lint-staged":{"**/*.{js,jsx,json,md}":["prettier --write"],"src/**/*.{ts,tsx}":["prettier --parser=typescript --write"],"src/**/*.{ts,tsx,js,jsx}":["eslint --fix --max-warnings 0"]},"commitlint":{"extends":["@commitlint/config-conventional"]},"standard-version":{"types":[{"type":"feat","section":"Features"},{"type":"fix","section":"Bug Fixes"},{"type":"perf","section":"Performance Improvements"},{"type":"refactor","section":"Refactor"}]},"prettier":{"trailingComma":"es5","semi":true,"singleQuote":true,"endOfLine":"lf","printWidth":80},"_id":"@activity-com/hhhhhhhhhh@1.0.3","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-SB7ka/nmsk1oQt2mqkUkLeDHnBK6iZLZYXQMaP/IYOaGjw7EzZs2VjiFt1MQYWMeRGJrn/we4GMyZEBQ3JpVEQ==","shasum":"4de41fccc5332883591ac5907fdda3a9c09bc548","tarball":"https://registry.npmjs.org/@activity-com/hhhhhhhhhh/-/hhhhhhhhhh-1.0.3.tgz","fileCount":13,"unpackedSize":70768,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEI42PQoaOOAIWp9NkP4HfSNc7ckSWA+08SKZrWSgkR8AiEAsxBwrxUE/kTHubMb0lVf259uifORNHstAWANg6Zdrq8="}]},"_npmUser":{"name":"zhangfan999999","email":"356672247@qq.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/hhhhhhhhhh_1.0.3_1694485047335_0.7269787940400378"},"_hasShrinkwrap":false}},"time":{"created":"2023-09-12T02:17:27.215Z","1.0.3":"2023-09-12T02:17:27.561Z","modified":"2023-09-12T02:17:27.845Z"},"maintainers":[{"name":"zhangfan999999","email":"356672247@qq.com"}],"description":"## Command","keywords":["activity maker"],"repository":{"type":"git","url":"https://gitee.com/activity-platform-components/hhhhhhhhhh"},"author":{"name":"张帆","email":"zhangfan@example.com"},"bugs":{"url":"https://gitee.com/activity-platform-components/hhhhhhhhhh/issues"},"license":"MIT","readme":"# @activity-com/hhhhhhhhhh\n\n## Command\n\n```bash\nyarn start              # 启动调试，Editor & 页面\nyarn start --list       # 启动调试，自动打开活动列表页\nyarn start -d           # 启动调试，禁止自动打开浏览器（配合 vscode debugger 调试时推荐）\nyarn start --editor     # 仅启动 editor 调试\nyarn start --node       # 仅启动 SSR 页面调试\n\nyarn build              # 编译打包\n\nyarn pub                # 发布组件\nyarn pub -r             # 发布组件，支持选择版本\n\nyarn upg                # 升级组件调试编译核心能力（包含 @xmc/component-scripts、@activity-maker/component-core-dependencies 以及自动更新 package.json 等）\nyarn upg --core         # 强制升级 @activity-maker/component-core-dependencies，即使已是最新版本也会重装（包含 activity-maker-core、activity-maker-actions 等）\n\nyarn commit             # commit 提交（替代 git commit）\n```\n\n## Documentation\n\n- [组件开发者文档](http://commercial-activity-maker.pages.xmly.work/website-core/#/developer/)\n- [create-component-app](http://commercial-activity-maker.pages.xmly.work/create-component-app/)\n\n## Construction\n\n```bash\n├── .cca/                       # 调试工具的缓存目录（用于安装远程组件）\n├── .vscode/                    # vscode 默认配置（推荐 git 提交）\n├── dist/                       # 组件打包输出\n├── node_modules/\n├── src/                        # 源码\n│   ├── node/                       # 组件渲染代码（SSR 服务端渲染，需要包含组件的完整功能）\n│   ├── preview/                    # preview 编辑预览代码\n│   ├── setting/                    # setting 配置\n│   ├── default-props.ts            # 组件配置的默认值（forms props）—— 合适、恰当的默认 forms props，会有助于运营同学理解“你的组件怎样配置”\n│   ├── setupProxy.js               # 接口调试 proxy（可删除）\n│   ├── type.ts                     # form props TS 类型定义（仅用于定义 props）\n│   └── typings.d.ts                # TS 全局类型定义（相当于 React 项目的 react-app-env.d.ts）\n├── .env.development            # start:editor 环境变量\n├── .env.node.development       # start:node 环境变量\n├── .gitignore\n├── .yarnrc\n├── CHANGELOG.md\n├── README.md\n├── package.json\n├── tsconfig.json\n└── yarn.lock\n```\n","readmeFilename":"README.md"}