@ts-dev-tools/react
Version:
TS dev tools for React
85 lines (84 loc) • 2.13 kB
JSON
{
"name": "@ts-dev-tools/react",
"version": "1.9.7",
"description": "TS dev tools for React",
"keywords": [
"linter",
"prettier",
"git-hooks"
],
"author": "ESCEMI <contact@escemi.com>",
"homepage": "https://github.com/escemi-tech/ts-dev-tools",
"license": "MIT",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"/dist"
],
"bin": {
"ts-dev-tools": "./node_modules/.bin/ts-dev-tools"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/escemi-tech/ts-dev-tools.git"
},
"scripts": {
"start": "pnpm link && tsc -w",
"stop": "pnpm unlink",
"build": "rimraf dist && tsc",
"jest": "jest --detectOpenHandles --forceExit",
"test": "npm run jest -- --maxWorkers=50%",
"test:unit": "npm run test -- --testPathPattern \".+spec\\.ts\"",
"test:e2e": "npm run test -- --testPathPattern \".+e2e\\.spec\\.ts\"",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint \"src/**/*.{ts,tsx}\""
},
"bugs": {
"url": "https://github.com/escemi-tech/ts-dev-tools/issues"
},
"dependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.3.0",
"@ts-dev-tools/core": "^1.9.7",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"eslint-plugin-react": "^7.37.5",
"jest-environment-jsdom": "^30.0.0",
"react-test-renderer": "^19.1.0"
},
"prettier": {
"semi": true,
"printWidth": 100,
"trailingComma": "es5",
"plugins": [
"@prettier/plugin-oxc"
]
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/src/**/__tests__/**/*.[jt]s?(x)",
"**/src/**/?(*.)+(spec|test)?(.*).+(ts|tsx|js)"
],
"collectCoverageFrom": [
"**/src/**/*.[jt]s?(x)"
],
"reporters": [
"default",
"github-actions"
]
},
"gitHead": "017cf83fb5426195d1feb11bcb97f2a173850f06"
}