{ "name": "tsc-watch", "version": "6.2.0", "description": "The TypeScript compiler with onSuccess command", "scripts": { "clean": "rimraf dist && rimraf tmp", "prepublishOnly": "npm run build && crlf --set=LF index.js client.js dist/**/*", "test": "npm run build && jest --verbose --runInBand", "build": "npm run clean && npm run build-lib && npm run build-client", "build-lib": "tsc -p tsconfig.json", "build-client": "tsc -p tsconfig-client.json", "watch-lib": "tsc -p tsconfig.json --watch" }, "bin": { "tsc-watch": "dist/lib/tsc-watch.js" }, "files": [ "dist/**/*", "index.js", "client.js", "client.d.ts" ], "repository": { "type": "git", "url": "git+ssh://git@github.com/gilamran/tsc-watch.git" }, "keywords": [ "TypeScript" ], "main": "./dist/client/index.js", "types": "./dist/client/index.d.ts", "engines": { "node": ">=12.12.0" }, "author": "Gil Amran", "license": "MIT", "bugs": { "url": "https://github.com/gilamran/tsc-watch/issues" }, "homepage": "https://github.com/gilamran/tsc-watch#readme", "prettier": { "trailingComma": "all", "tabWidth": 2, "semi": true, "singleQuote": true, "printWidth": 100 }, "dependencies": { "cross-spawn": "^7.0.3", "node-cleanup": "^2.1.2", "ps-tree": "^1.2.0", "string-argv": "^0.3.1" }, "peerDependencies": { "typescript": "*" }, "devDependencies": { "@types/cross-spawn": "^6.0.2", "@types/jest": "^29.5.1", "@types/node": "^12.12.0", "@types/node-cleanup": "^2.1.2", "@types/ps-tree": "^1.1.2", "crlf": "^1.1.1", "fs-extra": "^11.1.1", "jest": "^29.5.0", "rimraf": "^5.0.0", "ts-jest": "^29.1.0", "typescript": "^4.6.3" } }