UNPKG

prettier-plugin-imports

Version:

A prettier plugins to sort imports in provided RegEx order

73 lines (72 loc) 1.89 kB
{ "name": "prettier-plugin-imports", "version": "4.3.3", "description": "A prettier plugins to sort imports in provided RegEx order", "repository": "oviirup/prettier-plugin-imports", "author": "Avirup Ghosh (https://github.com/oviirup)", "license": "MIT", "private": false, "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { "types": "./dist/index.d.ts", "require": "./dist/index.js", "default": "./dist/index.js" }, "keywords": [ "prettier", "plugin", "sort", "organize", "import", "typescript", "javascript" ], "scripts": { "build": "bunchee -m --no-sourcemap", "build:watch": "bunchee -w", "clean": "npx rimraf dist tests/**/*.snap", "format": "prettier . -w -u", "format:check": "prettier . --check", "test": "vitest --run", "test:watch": "vitest", "types:check": "tsc --noEmit" }, "peerDependencies": { "@vue/compiler-sfc": ">=3", "prettier": ">=3" }, "peerDependenciesMeta": { "@vue/compiler-sfc": { "optional": true } }, "dependencies": { "@babel/generator": "^7.27.0", "@babel/parser": "^7.27.0", "@babel/traverse": "^7.27.0", "@babel/types": "^7.27.0", "semver": "^7.7.1" }, "devDependencies": { "@changesets/changelog-github": "^0.5.1", "@changesets/cli": "^2.29.2", "@types/babel__generator": "^7.27.0", "@types/babel__traverse": "^7.20.7", "@types/node": "^22.14.1", "@types/semver": "^7.7.0", "@vue/compiler-sfc": "^3.5.13", "bunchee": "^6.5.1", "cross-env": "~7.0.3", "prettier": "^3.5.3", "prettier-plugin-astro": "^0.14.1", "prettier-plugin-jsdoc": "^1.3.2", "prettier-plugin-pkg": "^0.19.0", "typescript": "^5.8.3", "vitest": "^3.1.2" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }