-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 819 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 819 Bytes
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
{
"name": "size-limit-node-esbuild",
"version": "0.4.0",
"type": "module",
"description": "Node esbuild plugin for Size Limit",
"repository": "git+https://github.com/un-ts/size-limit.git",
"homepage": "https://github.com/un-ts/size-limit/blob/main/packages/node-esbuild",
"author": "JounQin (https://www.1stG.me) <admin@1stg.me>",
"funding": "https://opencollective.com/unts",
"license": "MIT",
"engines": {
"node": "^12.20.0 || ^14.18.0 || >=16.0.0"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"files": [
"lib",
"shim.d.ts"
],
"dependencies": {
"nanoid": "^5.1.5",
"size-limit": "^11.2.0",
"tslib": "^2.8.1"
},
"publishConfig": {
"access": "public"
}
}