Files
Andrei 58f8093689 Rebrand from 'Redirect Intelligence v2' to 'URL Tracker Tool V2' throughout UI
- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
2025-08-19 19:12:23 +00:00

51 lines
1.3 KiB
JSON

{
"name": "@zag-js/focus-visible",
"version": "0.31.1",
"description": "Focus visible polyfill utility based on WICG",
"keywords": [
"js",
"utils",
"focus-visible",
"wicg"
],
"author": "Segun Adebayo <sage@adebayosegun.com>",
"homepage": "https://github.com/chakra-ui/zag#readme",
"license": "MIT",
"repository": "https://github.com/chakra-ui/zag/tree/main/packages/utilities/focus-visible",
"sideEffects": false,
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/chakra-ui/zag/issues"
},
"clean-package": "../../../clean-package.config.json",
"main": "dist/index.js",
"dependencies": {
"@zag-js/dom-query": "0.31.1"
},
"devDependencies": {
"clean-package": "2.2.0"
},
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup",
"test": "jest --config ../../../jest.config.js --rootDir tests",
"lint": "eslint src --ext .ts,.tsx",
"test-ci": "pnpm test --ci --runInBand -u",
"test-watch": "pnpm test --watchAll"
}
}