-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 858 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
{
"name": "esbuild-plugin-external-package",
"version": "1.0.0",
"description": "ESbuild plugin that sets all dependencies to external",
"author": "Russel Dave <yamitsushi@gmail.com>",
"license": "MIT",
"main": "index.js",
"typings": "./index.d.ts",
"keywords": [
"ESBuild",
"esbuild",
"plugin"
],
"files": [
"./cjs.cjs",
"./esm.mjs",
"./index.d.ts"
],
"exports": {
".": {
"import": "./esm.mjs",
"require": "./cjs.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/yamitsushi/esbuild-plugin-external-package.git"
},
"bugs": {
"url": "https://github.com/yamitsushi/esbuild-plugin-external-package/issues"
},
"homepage": "https://github.com/yamitsushi/esbuild-plugin-external-package#readme",
"devDependencies": {
"esbuild": "^0.17.5"
}
}