UNPKG

setup-typescript-monorepo

Version:

Convert Workspaces to TypeScript's Project References

80 lines (79 loc) 2.07 kB
{ "name": "setup-typescript-monorepo", "_": "[bump]", "version": "0.0.3", "description": "Convert Workspaces to TypeScript's Project References", "keywords": [ "yarn", "npm", "workspaces", "typescript", "project-reference" ], "homepage": "https://github.com/remorses/setup-typescript-monorepo", "repository": { "type": "git", "url": "https://github.com/remorses/setup-typescript-monorepo" }, "license": "MIT", "author": "remorses", "sideEffects": false, "main": "dist/index.js", "types": "dist/index.d.ts", "bin": "bin/cmd.js", "files": [ "bin/", "dist/", "src" ], "scripts": { "build": "tsc -b . && tsc -b tsconfig.module.json", "clean": "rimraf lib/ module/ && tsc -b --clean && tsc -b tsconfig.module.json --clean", "prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"", "test": "jest", "watch": "tsc -b . --watch" }, "prettier": { "printWidth": 120, "singleQuote": false, "tabWidth": 4, "trailingComma": "none" }, "jest": { "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ], "testRegex": "./test/.*.ts$", "rootDir": ".", "transform": { "^.+\\.tsx?$": "ts-jest" }, "modulePathIgnorePatterns": [ "<rootDir>/test/fixtures" ] }, "dependencies": { "@monorepo-utils/package-utils": "^2.2.0", "comment-json": "^3.0.3", "meow": "^7.1.1", "tslib": "^2.0.1" }, "devDependencies": { "@types/comment-json": "^1.1.1", "@types/jest": "^26.0.10", "@types/node": "^14.6.2", "jest": "^26.4.2", "prettier": "^2.1.1", "rimraf": "^3.0.2", "ts-jest": "^26.3.0", "typescript": "^4.0.2" }, "publishConfig": { "access": "public" } }