-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 853 Bytes
/
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
{
"name": "esbuild-plugin-noexternal",
"type": "module",
"version": "0.1.6",
"description": "Externalize all packages except the ones passed to this plugin",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup index.ts --format esm,cjs --dts",
"watch": "tsup --watch index.ts --format esm,cjs --dts"
},
"devDependencies": {
"@types/node": "^18.13.0",
"esbuild": "^0.16.16",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"keywords": [
"esbuild",
"plugin"
],
"author": "Mayank",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mayank99/esbuild-plugin-noexternal.git"
}
}