| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- {
- "name": "@flowgram.ai/form-materials",
- "version": "0.1.8",
- "homepage": "https://flowgram.ai/",
- "repository": "https://github.com/bytedance/flowgram.ai",
- "license": "MIT",
- "exports": {
- "types": "./dist/index.d.ts",
- "import": "./dist/esm/index.js",
- "require": "./dist/index.js"
- },
- "main": "./dist/index.js",
- "module": "./dist/esm/index.js",
- "types": "./dist/index.d.ts",
- "bin": {
- "flowgram-form-materials": "./bin/run.sh"
- },
- "files": [
- "dist",
- "bin",
- "src"
- ],
- "scripts": {
- "build": "npm run build:fast -- --dts-resolve",
- "build:fast": "tsup src/index.ts --format cjs,esm --sourcemap --legacy-output",
- "build:watch": "npm run build:fast -- --dts-resolve",
- "clean": "rimraf dist",
- "test": "exit 0",
- "test:cov": "exit 0",
- "ts-check": "tsc --noEmit",
- "watch": "npm run build:fast -- --dts-resolve --watch --ignore-watch dist",
- "run-bin": "node bin/index.js"
- },
- "dependencies": {
- "@douyinfe/semi-icons": "^2.80.0",
- "@douyinfe/semi-illustrations": "^2.80.0",
- "@douyinfe/semi-ui": "^2.80.0",
- "@flowgram.ai/editor": "workspace:*",
- "@flowgram.ai/json-schema": "workspace:*",
- "lodash-es": "^4.17.21",
- "nanoid": "^4.0.2",
- "immer": "~10.1.1",
- "@coze-editor/editor": "0.1.0-alpha.5a549c",
- "@codemirror/view": "~6.38.0",
- "@codemirror/state": "~6.5.2",
- "typescript": "^5.8.3",
- "zod": "^3.24.4"
- },
- "devDependencies": {
- "@flowgram.ai/eslint-config": "workspace:*",
- "@flowgram.ai/ts-config": "workspace:*",
- "@types/lodash-es": "^4.17.12",
- "@types/node": "^18",
- "@types/react": "^18",
- "@types/react-dom": "^18",
- "@types/inquirer": "9.0.7",
- "@types/styled-components": "^5",
- "eslint": "^8.54.0",
- "react": "^18",
- "react-dom": "^18",
- "styled-components": "^5",
- "tsup": "^8.0.1",
- "typescript": "^5.8.3",
- "vitest": "^0.34.6"
- },
- "peerDependencies": {
- "react": ">=16.8",
- "react-dom": ">=16.8",
- "styled-components": ">=4"
- },
- "publishConfig": {
- "access": "public",
- "registry": "https://registry.npmjs.org/"
- }
- }
|