buster/apps/momentic/package.json

32 lines
828 B
JSON
Raw Normal View History

2025-09-18 03:28:19 +08:00
{
"name": "@buster-app/momentic",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"scripts": {
"prebuild": "[ \"$SKIP_ENV_CHECK\" = \"true\" ] || tsx scripts/validate-env.ts",
2025-09-18 04:51:22 +08:00
"momentic": "pnpm dlx momentic app --api-key $MOMENTIC_API_KEY",
"momentic:run": "pnpm dlx momentic run --api-key $MOMENTIC_API_KEY"
2025-09-18 03:28:19 +08:00
},
"dependencies": {
"@buster/env-utils": "workspace:*",
"@buster/typescript-config": "workspace:*",
"@buster/vitest-config": "workspace:*",
"zod": "catalog:"
},
"devDependencies": {
"momentic": "^2.16.0",
"tsx": "catalog:"
}
2025-09-18 04:51:22 +08:00
}