forked from Ephem/rollup-plugin-preserve-directives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "rollup-plugin-preserve-directives",
"description": "A Rollup plugin to preserve directives like \"use client\" when preserveModules is true.",
"version": "0.3.1",
"author": "Fredrik Höglund <[email protected]>",
"license": "MIT",
"keywords": [
"rollup-plugin"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/Ephem/rollup-plugin-preserve-directives.git"
},
"homepage": "https://github.com/Ephem/rollup-plugin-preserve-directives#readme",
"bugs": "https://github.com/Ephem/rollup-plugin-preserve-directives/issues",
"scripts": {
"check": "tsc",
"build": "tsup src/index.ts --dts --format cjs,esm",
"watch": "npm run build --watch"
},
"peerDependencies": {
"rollup": "2.x || 3.x || 4.x"
},
"dependencies": {
"magic-string": "^0.30.5"
},
"devDependencies": {
"rollup": "^4.9.5",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md",
"CHANGELOG.md"
]
}