Files
emaui/node_modules/@module-federation/third-party-dts-extractor/package.json
2026-05-29 15:23:46 +03:00

51 lines
1.3 KiB
JSON

{
"name": "@module-federation/third-party-dts-extractor",
"version": "2.5.0",
"files": [
"dist/",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/core.git",
"directory": "packages/third-party-dts-extractor"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
]
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "hanric <hanric.zhang@gmail.com>",
"license": "MIT",
"dependencies": {
"find-pkg": "2.0.0",
"resolve": "1.22.8"
},
"devDependencies": {
"@types/node": "^20.19.5",
"@types/react": "^18.3.11",
"vitest": "1.6.0",
"react": "^18",
"tsup": "7.3.0"
},
"scripts": {
"build": "tsup --config tsup.config.ts --outDir dist && cp package.json dist && cp *.md dist",
"lint": "ESLINT_USE_FLAT_CONFIG=false pnpm exec eslint --ignore-pattern node_modules \"**/*.ts\"",
"test": "pnpm exec vitest run --passWithNoTests --config vite.config.mts",
"pre-release": "pnpm run test && pnpm run build"
}
}