数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.0 KiB

2 years ago
{
"name": "unimport",
2 years ago
"version": "3.4.0",
2 years ago
"description": "Unified utils for auto importing APIs in modules",
"repository": "unjs/unimport",
"license": "MIT",
"sideEffects": false,
"type": "module",
"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": [
"dist",
"*.d.ts"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint --ext .ts,.js,.mjs,.cjs .",
"prepack": "unbuild",
"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 && npm publish",
"test": "vitest --coverage"
},
"dependencies": {
2 years ago
"@rollup/pluginutils": "^5.0.4",
2 years ago
"escape-string-regexp": "^5.0.0",
2 years ago
"fast-glob": "^3.3.1",
2 years ago
"local-pkg": "^0.4.3",
2 years ago
"magic-string": "^0.30.3",
"mlly": "^1.4.2",
"pathe": "^1.1.1",
2 years ago
"pkg-types": "^1.0.3",
"scule": "^1.0.0",
2 years ago
"strip-literal": "^1.3.0",
"unplugin": "^1.5.0"
2 years ago
},
"devDependencies": {
2 years ago
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@vitest/coverage-v8": "^0.34.5",
"bumpp": "^9.2.0",
"conventional-changelog-cli": "^3.0.0",
"eslint": "8.50.0",
"h3": "^1.8.1",
"jquery": "^3.7.1",
"lit": "^2.8.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vitest": "^0.34.5",
"vue-tsc": "^1.8.13"
2 years ago
},
2 years ago
"packageManager": "pnpm@8.7.6"
2 years ago
}