| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "@flowgram.ai/document",
- "version": "0.1.0",
- "description": "automation flow engine",
- "keywords": [
- "flow",
- "engine"
- ],
- "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",
- "files": [
- "dist"
- ],
- "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": "vitest run",
- "test:cov": "vitest run --coverage",
- "test:update": "vitest run --update",
- "ts-check": "tsc --noEmit",
- "watch": "npm run build:fast -- --dts-resolve --watch --ignore-watch dist"
- },
- "dependencies": {
- "@flowgram.ai/core": "workspace:*",
- "@flowgram.ai/utils": "workspace:*",
- "inversify": "^6.0.1",
- "lodash": "^4.17.21",
- "nanoid": "^4.0.2",
- "reflect-metadata": "~0.2.2"
- },
- "devDependencies": {
- "@flowgram.ai/eslint-config": "workspace:*",
- "@flowgram.ai/ts-config": "workspace:*",
- "@types/lodash": "^4.14.137",
- "@vitest/coverage-v8": "^0.32.0",
- "eslint": "^8.54.0",
- "tsup": "^8.0.1",
- "typescript": "^5.0.4",
- "vitest": "^0.34.6"
- },
- "publishConfig": {
- "access": "public",
- "registry": "https://registry.npmjs.org/"
- }
- }
|