mycrossword
Version:
React crossword component
81 lines (80 loc) • 2.18 kB
JSON
{
"name": "mycrossword",
"author": "Tom Blackwell",
"private": false,
"license": "MIT",
"version": "2.4.0",
"description": "React crossword component",
"keywords": [
"react",
"crossword",
"crosswords"
],
"type": "module",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.js",
"types": "./dist/main.d.ts"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/t-blackwell/mycrossword"
},
"sideEffects": [
"*.css",
"**/*.css"
],
"scripts": {
"dev": "vite --open",
"build": "tsc --p ./tsconfig-build.json && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "jest --config jest.config.ts",
"typecheck": "tsc"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.39",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-css-import-order": "^1.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.26",
"glob": "^13.0.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.4.9",
"typescript": "^5.9.3",
"vite": "^4.5.14",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-lib-inject-css": "^2.2.2",
"vite-tsconfig-paths": "^5.1.4"
},
"dependencies": {
"classnames": "^2.5.1",
"zustand": "^5.0.12"
}
}