forked from Swatinem/rollup-plugin-dts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.86 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "rollup-plugin-dts",
"version": "6.1.1",
"description": "A rollup plugin that will bundle up your .d.ts definition files.",
"keywords": [
"rollup-plugin",
"typescript",
"dts",
"@types"
],
"author": "Arpad Borsos <[email protected]>",
"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": ">=16"
},
"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": "^7.24.7",
"@types/babel__code-frame": "^7.0.6",
"@types/d3-drag": "^3.0.7",
"@types/estree": "1.0.5",
"@types/node": "^20.16.5",
"@types/react": "^18.3.5",
"c8": "^10.1.2",
"rollup": "4.21.2",
"typescript": "5.5.4"
},
"peerDependencies": {
"rollup": "^3.29.4 || ^4",
"typescript": "^4.5 || ^5.0"
},
"optionalDependencies": {
"@babel/code-frame": "^7.24.7"
},
"dependencies": {
"magic-string": "^0.30.11"
}
}