EASYAIuniappNewUI/node_modules/unimport/package.json
2025-02-08 18:50:38 +08:00

78 lines
2.0 KiB
JSON

{
"name": "unimport",
"type": "module",
"version": "3.14.5",
"description": "Unified utils for auto importing APIs in modules",
"license": "MIT",
"repository": "unjs/unimport",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./unplugin": {
"types": "./dist/unplugin.d.ts",
"import": "./dist/unplugin.mjs",
"require": "./dist/unplugin.cjs"
},
"./addons": {
"types": "./dist/addons.d.ts",
"import": "./dist/addons.mjs",
"require": "./dist/addons.cjs"
},
"./*": "./*"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"dependencies": {
"@rollup/pluginutils": "^5.1.3",
"acorn": "^8.14.0",
"escape-string-regexp": "^5.0.0",
"estree-walker": "^3.0.3",
"fast-glob": "^3.3.2",
"local-pkg": "^0.5.1",
"magic-string": "^0.30.14",
"mlly": "^1.7.3",
"pathe": "^1.1.2",
"picomatch": "^4.0.2",
"pkg-types": "^1.2.1",
"scule": "^1.3.0",
"strip-literal": "^2.1.1",
"unplugin": "^1.16.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@types/estree": "^1.0.6",
"@types/node": "^22.10.1",
"@types/picomatch": "^3.0.1",
"@vitest/coverage-v8": "^2.1.8",
"bumpp": "^9.8.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.16.0",
"h3": "^1.13.0",
"jquery": "^3.7.1",
"lit": "^3.2.1",
"typescript": "~5.6.3",
"unbuild": "^2.0.0",
"vitest": "^2.1.8",
"vue-tsc": "^2.1.10"
},
"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",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "pnpm run test --run && bumpp -x \"pnpm run changelog\" --all && pnpm publish",
"test": "vitest --coverage"
}
}