69 lines
1.8 KiB
JSON
69 lines
1.8 KiB
JSON
{
|
|
"name": "unimport",
|
|
"type": "module",
|
|
"version": "5.2.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.1",
|
|
"magic-string": "^0.30.17",
|
|
"mlly": "^1.7.4",
|
|
"pathe": "^2.0.3",
|
|
"picomatch": "^4.0.3",
|
|
"pkg-types": "^2.2.0",
|
|
"scule": "^1.3.0",
|
|
"strip-literal": "^3.0.0",
|
|
"tinyglobby": "^0.2.14",
|
|
"unplugin": "^2.3.5",
|
|
"unplugin-utils": "^0.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^4.17.0",
|
|
"@types/estree": "^1.0.8",
|
|
"@types/node": "^24.0.15",
|
|
"@types/picomatch": "^4.0.1",
|
|
"@vitest/coverage-v8": "^3.2.4",
|
|
"bumpp": "^10.2.0",
|
|
"conventional-changelog-cli": "^5.0.0",
|
|
"eslint": "^9.31.0",
|
|
"h3": "^1.15.3",
|
|
"jquery": "^3.7.1",
|
|
"lit": "^3.3.1",
|
|
"typescript": "^5.8.3",
|
|
"unbuild": "^3.5.0",
|
|
"vitest": "^3.2.4",
|
|
"vue-tsc": "^3.0.3"
|
|
},
|
|
"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"
|
|
}
|
|
} |