{ "name": "@repo/nest", "version": "0.0.1", "private": true, "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "default": "./dist/index.js" } }, "nx": { "targets": { "build": { "executor": "@nx/js:tsc", "outputs": [ "{options.outputPath}" ], "options": { "outputPath": "tools/nest/dist", "main": "tools/nest/src/index.ts", "tsConfig": "tools/nest/tsconfig.lib.json", "rootDir": "tools/nest/src", "generatePackageJson": false, "assets": [ { "input": "./tools/nest/src", "glob": "**/!(*.ts)", "output": "." }, { "input": "./tools/nest/src", "glob": "**/*.d.ts", "output": "." } ] } } } }, "dependencies": { "@nx/devkit": "20.4.0", "tslib": "^2.3.0" }, "generators": "./generators.json", "files": [ "dist", "!**/*.tsbuildinfo", "generators.json" ] }