impound
Version:
Builder-agnostic plugin to allow restricting import patterns in certain parts of your code-base.
59 lines • 1.39 kB
JSON
{
"name": "impound",
"type": "module",
"version": "0.2.0",
"description": "Builder-agnostic plugin to allow restricting import patterns in certain parts of your code-base.",
"license": "MIT",
"repository": "unjs/impound",
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@rollup/pluginutils": "^5.1.2",
"mlly": "^1.7.2",
"pathe": "^1.1.2",
"unenv": "^1.10.0",
"unplugin": "^1.14.1"
},
"devDependencies": {
"@antfu/eslint-config": "3.7.3",
"@types/node": "22.7.5",
"@vitest/coverage-v8": "2.1.2",
"bumpp": "9.7.1",
"eslint": "9.12.0",
"lint-staged": "15.2.10",
"rollup": "4.24.0",
"simple-git-hooks": "2.11.1",
"typescript": "5.6.3",
"unbuild": "2.0.0",
"vite": "5.4.8",
"vitest": "2.1.2"
},
"resolutions": {
"impound": "link:."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
},
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint . --fix",
"release": "bumpp && pnpm publish",
"test": "pnpm test:unit && pnpm test:types",
"test:unit": "vitest",
"test:types": "tsc --noEmit"
}
}