factuges_2025/packages/rdx-criteria/package.json

34 lines
807 B
JSON
Raw Normal View History

2025-04-27 20:47:47 +00:00
{
"name": "@rdx/criteria",
"version": "0.0.0",
"private": true,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsc",
2025-05-01 17:14:48 +00:00
"clean": "rm -rf dist && rm -rf node_modules && rm -rf .turbo",
2025-04-27 20:47:47 +00:00
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"jest": {
"preset": "@repo/jest-presets/node"
},
"devDependencies": {
"@changesets/cli": "^2.29.2",
"@faker-js/faker": "^9.7.0",
"@repo/eslint-config": "workspace:*",
"@repo/jest-presets": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.2",
"jest": "^29.7.0",
"typescript": "^5.8.3"
}
}