@workspace-fs/react
Version:
React hooks for Workspace-FS - Multi-project file system management
84 lines • 2.17 kB
JSON
{
"name": "@workspace-fs/react",
"version": "1.0.1",
"description": "React hooks for Workspace-FS - Multi-project file system management",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@vitest/coverage-v8": "^3.2.4",
"fake-indexeddb": "^6.0.1",
"jsdom": "^23.0.1",
"prettier": "^3.5.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^3.2.4",
"@workspace-fs/core": "1.0.8"
},
"peerDependencies": {
"@workspace-fs/core": "^1.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/andersondrosa/workspace-fs.git",
"directory": "packages/react"
},
"bugs": {
"url": "https://github.com/andersondrosa/workspace-fs/issues"
},
"homepage": "https://github.com/andersondrosa/workspace-fs#readme",
"author": {
"name": "Anderson D. Rosa",
"url": "https://github.com/andersondrosa"
},
"license": "MIT",
"keywords": [
"workspace-fs",
"firesystem",
"workspace",
"react",
"react-hooks",
"hooks",
"headless",
"multi-project",
"file-system",
"virtual-filesystem",
"state-management",
"project-management"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\""
}
}