rollup-plugin-dts
Version:
A rollup plugin that will bundle up your .d.ts definition files.
89 lines (88 loc) • 2.39 kB
JSON
{
"name": "rollup-plugin-dts",
"version": "6.5.1",
"description": "A rollup plugin that will bundle up your .d.ts definition files.",
"keywords": [
"rollup-plugin",
"typescript",
"dts",
"@types"
],
"author": "Arpad Borsos <arpad.borsos@googlemail.com>",
"license": "LGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/Swatinem/rollup-plugin-dts.git"
},
"bugs": {
"url": "https://github.com/Swatinem/rollup-plugin-dts/issues"
},
"funding": {
"url": "https://github.com/sponsors/Swatinem"
},
"homepage": "https://github.com/Swatinem/rollup-plugin-dts#readme",
"engines": {
"node": ">=20"
},
"type": "module",
"main": "./dist/rollup-plugin-dts.cjs",
"types": "./dist/rollup-plugin-dts.d.cts",
"exports": {
"import": "./dist/rollup-plugin-dts.mjs",
"require": "./dist/rollup-plugin-dts.cjs"
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"clean": "node -e \"(async () => { try { await require('fs/promises').rm('dist', { recursive: true }); } catch {} })()\"",
"prebuild": "npm run clean",
"build": "tsc && rollup --config .build/rollup.config.js",
"prepublishOnly": "npm run test",
"pretest": "npm run build",
"test": "c8 node .build/tests/index.js"
},
"prettier": {
"printWidth": 120,
"trailingComma": "all"
},
"devDependencies": {
"@babel/code-frame": "^8.0.0",
"@jridgewell/trace-mapping": "^0.3.31",
"@types/babel__code-frame": "^7.27.0",
"@types/convert-source-map": "^2.0.3",
"@types/d3-drag": "^3.0.7",
"@types/estree": "1.0.9",
"@types/node": "^26.1.2",
"@types/react": "^19.2.18",
"@typescript/native": "npm:typescript@^7.0.2",
"c8": "^12.0.0",
"rollup": "4.62.4",
"typescript": "npm:@typescript/typescript6@^6.0.2"
},
"peerDependencies": {
"@typescript/typescript6": "^6",
"rollup": "^3 || ^4",
"typescript": "^4.5 || ^5 || ^6 || ^7"
},
"peerDependenciesMeta": {
"@typescript/typescript6": {
"optional": true
}
},
"optionalDependencies": {
"@babel/code-frame": "^8.0.0"
},
"dependencies": {
"@jridgewell/remapping": "^2.3.5",
"@jridgewell/sourcemap-codec": "^1.5.5",
"convert-source-map": "^2.0.0",
"magic-string": "^0.30.21"
},
"overrides": {
"c8": {
"yargs": "^18.1.0"
}
}
}