UNPKG

@lifi/compose-spec

Version:

Public wire-format types and schemas for Compose flows

78 lines (77 loc) 2.13 kB
{ "name": "@lifi/compose-spec", "version": "0.4.1", "description": "Public wire-format types and schemas for Compose flows", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/lifinance/Yggdrasil.git", "directory": "ts/packages/compose-spec" }, "type": "module", "sideEffects": false, "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs", "default": "./dist/index.js" }, "./package.json": "./package.json" }, "engines": { "node": ">=24" }, "publishConfig": { "access": "public" }, "prettier": { "singleQuote": true }, "scripts": { "build": "yarn check:types && tsup", "check:types": "tsc --noEmit", "clean": "rm -rf dist out", "pack:local": "yarn build && mkdir -p out && yarn pack --out 'out/%s-%v.tgz'", "test": "vitest run --config vitest.config.ts", "fix": "run-s fix:lint fix:prettier", "fix:lint": "eslint src --fix", "fix:prettier": "prettier \"src/**/*.ts\" --write", "lint": "eslint src", "test:lint": "eslint src", "test:prettier": "prettier \"src/**/*.ts\" --list-different" }, "dependencies": { "effect": "^3.21.0", "zod": "^4.1.11" }, "devDependencies": { "@eslint/compat": "^1.4.0", "@lifi/eslint-plugin": "workspace:^", "@typescript-eslint/eslint-plugin": "^8.68.0", "@typescript-eslint/parser": "^8.68.0", "eslint": "^9.36.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-import": "^2.22.0", "eslint-plugin-require-extensions": "^0.1.3", "npm-run-all": "^4.1.5", "prettier": "^3.9.4", "tsup": "^8.5.1", "typescript": "^6.0.3", "vitest": "^3.2.4" }, "files": [ "dist/**", "!dist/**/*.tsbuildinfo", "src/**/*.ts", "!src/**/*.spec.ts", "!src/**/*.test.ts", "!src/**/*.mock.ts", "!src/**/*.typecheck.ts", "!dist/**/*.typecheck.*" ] }