elearning/Frontend-Learner/node_modules/unimport/package.json
2026-01-13 10:48:02 +07:00

70 lines
No EOL
1.7 KiB
JSON

{
"name": "unimport",
"type": "module",
"version": "5.6.0",
"description": "Unified utils for auto importing APIs in modules",
"license": "MIT",
"repository": "unjs/unimport",
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./unplugin": "./dist/unplugin.mjs",
"./addons": "./dist/addons.mjs",
"./*": "./*"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"*.d.ts",
"dist"
],
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"acorn": "^8.15.0",
"escape-string-regexp": "^5.0.0",
"estree-walker": "^3.0.3",
"local-pkg": "^1.1.2",
"magic-string": "^0.30.21",
"mlly": "^1.8.0",
"pathe": "^2.0.3",
"picomatch": "^4.0.3",
"pkg-types": "^2.3.0",
"scule": "^1.3.0",
"strip-literal": "^3.1.0",
"tinyglobby": "^0.2.15",
"unplugin": "^2.3.11",
"unplugin-utils": "^0.3.1"
},
"devDependencies": {
"@antfu/eslint-config": "^6.6.1",
"@types/estree": "^1.0.8",
"@types/node": "^25.0.2",
"@types/picomatch": "^4.0.2",
"@vitest/coverage-v8": "^4.0.15",
"bumpp": "^10.3.2",
"eslint": "^9.39.2",
"h3": "^1.15.4",
"jquery": "^3.7.1",
"lit": "^3.3.1",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vitest": "^4.0.15",
"vue-tsc": "^3.1.8"
},
"resolutions": {
"chokidar": "catalog:dev"
},
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint .",
"play": "pnpm -C playground run dev",
"play:build": "pnpm -C playground run build",
"typecheck": "vue-tsc --noEmit",
"release": "pnpm run test --run && bumpp",
"test": "vitest --coverage"
}
}