UNPKG

1.2 kBJSONView Raw
1{
2 "name": "@pvtnbr/pkg-size",
3 "version": "1.0.0",
4 "description": "Measure the size of your npm package distribution",
5 "keywords": [
6 "cli",
7 "pkg-size",
8 "package",
9 "distribution",
10 "size",
11 "npm"
12 ],
13 "license": "MIT",
14 "repository": "privatenumber/pkg-size",
15 "publishConfig": {
16 "access": "public"
17 },
18 "funding": "https://github.com/privatenumber/pkg-size?sponsor=1",
19 "author": {
20 "name": "Hiroki Osame",
21 "email": "hiroki.osame@gmail.com"
22 },
23 "files": [
24 "bin/cli.js",
25 "dist"
26 ],
27 "main": "dist/pkg-size.js",
28 "bin": "bin/cli.js",
29 "scripts": {
30 "build": "tsc",
31 "lint": "xo"
32 },
33 "husky": {
34 "hooks": {
35 "pre-commit": "lint-staged"
36 }
37 },
38 "lint-staged": {
39 "src/*.{js,ts}": "xo"
40 },
41 "dependencies": {
42 "brotli-size": "^4.0.0",
43 "chalk": "^4.1.0",
44 "cli-simple-table": "^1.0.0",
45 "filesize": "^6.1.0",
46 "gunzip-maybe": "^1.4.2",
47 "gzip-size": "^6.0.0",
48 "libnpmpack": "^2.0.0",
49 "meow": "^8.0.0",
50 "tar-stream": "^2.1.4"
51 },
52 "devDependencies": {
53 "@types/gunzip-maybe": "^1.4.0",
54 "@types/tar-stream": "^2.1.0",
55 "husky": "^4.3.0",
56 "lint-staged": "^10.5.2",
57 "tsup": "^3.10.1",
58 "type-fest": "^0.20.2",
59 "typescript": "^4.1.2",
60 "xo": "^0.35.0"
61 }
62}