forked from antfu/export-size
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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
60
61
62
63
64
{
"name": "export-size",
"type": "module",
"version": "0.7.0",
"packageManager": "[email protected]",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/antfu/export-size#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/export-size.git"
},
"bugs": "https://github.com/antfu/export-size/issues",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "bin/export-size.mjs",
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsup",
"build:dev": "tsup --watch --sourcemap",
"dev": "tsx src/cli.ts",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish",
"lint": "eslint ."
},
"dependencies": {
"@babel/parser": "^7.23.0",
"@babel/traverse": "^7.23.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.3",
"enhanced-resolve": "^5.15.0",
"esbuild": "^0.19.5",
"filesize": "^10.1.0",
"fs-extra": "^11.1.1",
"rollup": "^3.29.4",
"terser": "^5.22.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@antfu/eslint-config": "^1.0.0-beta.27",
"@types/cli-progress": "^3.11.4",
"@types/fs-extra": "^11.0.3",
"@types/node": "^20.8.7",
"@types/yargs": "^17.0.29",
"bumpp": "^9.2.0",
"eslint": "^8.51.0",
"lodash-es": "^4.17.21",
"tsup": "^7.2.0",
"tsx": "^4.7.0",
"typescript": "^5.2.2"
}
}