@lifi/compose-spec
Version:
Public wire-format types and schemas for Compose flows
58 lines (57 loc) • 1.4 kB
JSON
{
"name": "@lifi/compose-spec",
"version": "0.1.0",
"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": ">=18"
},
"publishConfig": {
"access": "public"
},
"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"
},
"dependencies": {
"effect": "^3.21.0",
"zod": "^4.1.11"
},
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"files": [
"dist/**",
"!dist/**/*.tsbuildinfo",
"src/**/*.ts",
"!src/**/*.spec.ts",
"!src/**/*.test.ts",
"!src/**/*.mock.ts",
"!src/**/*.typecheck.ts",
"!dist/**/*.typecheck.*"
]
}