| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "name": "@flowgram.ai/node-variable-plugin",
- "version": "0.1.0",
- "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": "exit 0",
- "test:cov": "exit 0",
- "ts-check": "tsc --noEmit",
- "watch": "npm run build:fast -- --dts-resolve --watch --ignore-watch dist"
- },
- "dependencies": {
- "@flowgram.ai/core": "workspace:*",
- "@flowgram.ai/document": "workspace:*",
- "@flowgram.ai/form-core": "workspace:*",
- "@flowgram.ai/node": "workspace:*",
- "@flowgram.ai/utils": "workspace:*",
- "@flowgram.ai/variable-plugin": "workspace:*",
- "inversify": "^6.0.1",
- "lodash": "^4.17.21"
- },
- "devDependencies": {
- "@flowgram.ai/eslint-config": "workspace:*",
- "@flowgram.ai/ts-config": "workspace:*",
- "@types/bezier-js": "4.1.3",
- "@types/lodash": "^4.14.137",
- "@types/react": "^18",
- "@types/react-dom": "^18",
- "@types/styled-components": "^5",
- "@vitest/coverage-v8": "^0.32.0",
- "eslint": "^8.54.0",
- "react": "^18",
- "react-dom": "^18",
- "styled-components": "^5",
- "tsup": "^8.0.1",
- "typescript": "^5.0.4",
- "vitest": "^0.34.6"
- },
- "peerDependencies": {
- "react": ">=17",
- "react-dom": ">=17",
- "styled-components": ">=4"
- },
- "publishConfig": {
- "access": "public",
- "registry": "https://registry.npmjs.org/"
- }
- }
|