mirror of
https://github.com/mivodev/mivodev.github.io.git
synced 2026-01-26 21:41:53 +07:00
Fix dependencies: Add flag-icons, tailwind directives, and postcss config
This commit is contained in:
119
node_modules/focus-trap/package.json
generated
vendored
Normal file
119
node_modules/focus-trap/package.json
generated
vendored
Normal file
@@ -0,0 +1,119 @@
|
||||
{
|
||||
"name": "focus-trap",
|
||||
"version": "7.8.0",
|
||||
"description": "Trap focus within a DOM node.",
|
||||
"main": "dist/focus-trap.js",
|
||||
"module": "dist/focus-trap.esm.js",
|
||||
"types": "index.d.ts",
|
||||
"sideEffects": false,
|
||||
"files": [
|
||||
"package.json",
|
||||
"README.md",
|
||||
"CHANGELOG.md",
|
||||
"SECURITY.md",
|
||||
"LICENSE",
|
||||
"index.js",
|
||||
"index.d.ts",
|
||||
"dist"
|
||||
],
|
||||
"scripts": {
|
||||
"demo-bundle": "npm run compile:demo",
|
||||
"format": "prettier --write \"{*,src/**/*,test/**/*,docs/js/**/*,.github/workflows/**/*,cypress/**/*}.+(js|cjs|mjs|ts|cts|mts|yml)\"",
|
||||
"format:check": "prettier --check \"{*,src/**/*,test/**/*,docs/js/**/*,.github/workflows/**/*,cypress/**/*}.+(js|cjs|mjs|ts|cts|mts|yml)\"",
|
||||
"format:watch": "onchange \"{*,src/**/*,test/**/*,docs/js/**/*,.github/workflows/**/*,cypress/**/*}.+(js|cjs|mjs|ts|cts|mts|yml)\" -- prettier --write {{changed}}",
|
||||
"lint": "eslint \"{*,docs/js/**/*,cypress/e2e/**/*,test/**/*}.+(js|cjs|mjs|ts|cts|mts)\"",
|
||||
"clean": "rm -rf ./dist",
|
||||
"compile:esm": "cross-env BUILD_ENV=esm BABEL_ENV=esm rollup -c",
|
||||
"compile:cjs": "cross-env BUILD_ENV=cjs BABEL_ENV=es5 rollup -c",
|
||||
"compile:umd": "cross-env BUILD_ENV=umd BABEL_ENV=es5 rollup -c",
|
||||
"compile:demo": "cross-env BUILD_ENV=demo BABEL_ENV=es5 rollup -c",
|
||||
"compile": "npm run compile:esm && npm run compile:cjs && npm run compile:umd",
|
||||
"build": "npm run clean && npm run compile",
|
||||
"start": "npm run compile:demo -- --watch --environment SERVE,RELOAD",
|
||||
"start:cypress": "npm run compile:demo -- --environment SERVE,IS_CYPRESS_ENV:\"$CYPRESS_BROWSER\"",
|
||||
"test:types": "tsc index.d.ts",
|
||||
"test:unit": "jest",
|
||||
"test:coverage": "jest --coverage",
|
||||
"test:e2e": "ELECTRON_ENABLE_LOGGING=1 start-server-and-test start:cypress 9966 'cypress run --browser $CYPRESS_BROWSER --headless'",
|
||||
"test:e2e:chrome": "CYPRESS_BROWSER=chrome npm run test:e2e",
|
||||
"test:e2e:dev": "ELECTRON_ENABLE_LOGGING=1 start-server-and-test start:cypress 9966 'cypress open'",
|
||||
"test": "npm run format:check && npm run lint && npm run test:coverage && npm run test:types && npm run test:e2e:chrome",
|
||||
"prepare": "npm run build",
|
||||
"prepublishOnly": "npm run test && npm run build",
|
||||
"release": "npm run build && changeset publish",
|
||||
"all-contributors": "all-contributors"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/focus-trap/focus-trap.git"
|
||||
},
|
||||
"keywords": [
|
||||
"focus",
|
||||
"accessibility",
|
||||
"trap",
|
||||
"capture",
|
||||
"keyboard",
|
||||
"modal"
|
||||
],
|
||||
"author": {
|
||||
"name": "David Clark",
|
||||
"url": "http://davidtheclark.com/"
|
||||
},
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/focus-trap/focus-trap/issues"
|
||||
},
|
||||
"homepage": "https://github.com/focus-trap/focus-trap#readme",
|
||||
"dependencies": {
|
||||
"tabbable": "^6.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.28.3",
|
||||
"@babel/core": "^7.28.5",
|
||||
"@babel/eslint-parser": "^7.28.5",
|
||||
"@babel/eslint-plugin": "^7.27.1",
|
||||
"@babel/preset-env": "^7.28.5",
|
||||
"@changesets/cli": "^2.29.8",
|
||||
"@eslint/js": "^9.39.2",
|
||||
"@rollup/plugin-babel": "^6.1.0",
|
||||
"@rollup/plugin-commonjs": "^29.0.0",
|
||||
"@rollup/plugin-node-resolve": "^16.0.3",
|
||||
"@rollup/plugin-replace": "^6.0.3",
|
||||
"@rollup/plugin-terser": "^0.4.4",
|
||||
"@testing-library/cypress": "^10.1.0",
|
||||
"@testing-library/dom": "^10.4.1",
|
||||
"@testing-library/jest-dom": "^6.9.1",
|
||||
"@testing-library/user-event": "^14.6.1",
|
||||
"@types/jest": "^30.0.0",
|
||||
"@types/jquery": "^3.5.33",
|
||||
"@types/node": "^25.0.3",
|
||||
"@typescript-eslint/eslint-plugin": "^8.52.0",
|
||||
"@typescript-eslint/parser": "^8.50.0",
|
||||
"all-contributors-cli": "^6.26.1",
|
||||
"babel-jest": "^30.1.2",
|
||||
"babel-loader": "^10.0.0",
|
||||
"cross-env": "^10.1.0",
|
||||
"cypress": "^15.8.2",
|
||||
"cypress-plugin-tab": "^1.0.5",
|
||||
"eslint": "^9.39.2",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
"eslint-import-resolver-node": "^0.3.9",
|
||||
"eslint-import-resolver-typescript": "^4.4.4",
|
||||
"eslint-plugin-cypress": "^5.2.1",
|
||||
"eslint-plugin-import": "^2.32.0",
|
||||
"eslint-plugin-jest": "^29.12.1",
|
||||
"eslint-plugin-jest-dom": "^5.5.0",
|
||||
"eslint-plugin-testing-library": "^7.15.4",
|
||||
"globals": "^17.0.0",
|
||||
"jest": "^30.2.0",
|
||||
"jest-environment-jsdom": "^30.2.0",
|
||||
"jest-watch-typeahead": "^3.0.1",
|
||||
"onchange": "^7.1.0",
|
||||
"prettier": "^3.7.4",
|
||||
"rollup": "^4.55.1",
|
||||
"rollup-plugin-livereload": "^2.0.5",
|
||||
"rollup-plugin-serve": "^3.0.0",
|
||||
"start-server-and-test": "^2.1.3",
|
||||
"typescript": "^5.9.3"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user