forked from Swatinem/rollup-plugin-dts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.83 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
72
73
74
{
"name": "rollup-plugin-dts",
"version": "4.0.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",
"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": ">=v12.22.7"
},
"type": "module",
"main": "./dist/rollup-plugin-dts.cjs",
"exports": {
"import": "./dist/rollup-plugin-dts.mjs",
"require": "./dist/rollup-plugin-dts.cjs"
},
"types": "./dist/rollup-plugin-dts.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc && rollup -c .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": {
"@types/babel__code-frame": "^7.0.3",
"@types/d3-drag": "^3.0.1",
"@types/estree": "0.0.50",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.10",
"@types/react": "^17.0.37",
"c8": "^7.10.0",
"fs-extra": "^10.0.0",
"rimraf": "^3.0.2",
"rollup": "2.60.1",
"typescript": "4.5.2"
},
"peerDependencies": {
"rollup": "^2.60.1",
"typescript": "^4.5.2"
},
"optionalDependencies": {
"@babel/code-frame": "^7.16.0"
},
"dependencies": {
"@babel/code-frame": "^7.16.0",
"magic-string": "^0.25.7"
}
}