-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.03 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
75
76
77
{
"name": "rollup-plugin-keep-header-comment",
"version": "1.0.1",
"license": "Apache-2.0",
"description": "A rollup plugin to keep the header comments from source in the declaration file",
"keywords": [
"rollup",
"rollup-plugin",
"comment"
],
"author": {
"name": "peachest",
"email": "[email protected]",
"url": "https://github.com/peachest"
},
"homepage": "https://github.com/peachest/rollup-plugin-keep-header-comment",
"bugs": "https://github.com/peachest/rollup-plugin-keep-header-comment/issues",
"repository": {
"type": "git",
"url": "https://github.com/peachest/rollup-plugin-keep-header-comment.git"
},
"type": "module",
"files": [
"bin/",
"dist/",
"README.md",
"README_zh-Hans.md"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"test": "node example/example.cjs && node example/example.mjs",
"build": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/fs-extra": "^11.0.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "^2.8.4",
"rollup": "^4.13.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-node-externals": "^7.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.6.2",
"type-fest": "^4.14.0",
"typescript": "^5.0.4"
},
"dependencies": {
"fs-extra": "^11.1.1",
"magic-string": "^0.27.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
}
}