-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
50 lines (50 loc) · 1.14 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
{
"name": "rollup-plugin-esbuild",
"version": "0.0.0-semantic-release",
"packageManager": "pnpm@8.7.6",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"author": "EGOIST",
"license": "MIT",
"repository": "https://github.com/egoist/rollup-plugin-esbuild",
"scripts": {
"test": "vitest",
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm run build"
},
"files": [
"dist"
],
"devDependencies": {
"@types/debug": "^4.1.9",
"@types/node": "20.8.3",
"esbuild": "^0.19.4",
"prettier": "^3.0.3",
"react": "^18.2.0",
"rollup": "^4.0.2",
"ts-essentials": "^9.4.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"vue": "^3.3.4"
},
"dependencies": {
"@rollup/pluginutils": "^5.0.5",
"debug": "^4.3.4",
"es-module-lexer": "^1.3.1",
"get-tsconfig": "^4.7.2"
},
"peerDependencies": {
"esbuild": ">=0.18.0",
"rollup": "^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"
},
"engines": {
"node": ">=14.18.0"
}
}