-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "vite-plugin-bundlesize",
"version": "0.1.0",
"description": "Monitor bundle sizes and analyze bundle contents",
"type": "module",
"scripts": {
"build": "npm run clean && npm run build:ts",
"build:ts": "tsc",
"dev": "npm run build:core -- --watch",
"clean": "del-cli dist",
"lint": "biome check src",
"format": "biome format --write src",
"test": "vitest run",
"test:js": "vitest run",
"test:ts": "tsc --noEmit",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drwpow/vite-plugin-bundlesize.git"
},
"keywords": [
"vite",
"bundle",
"esbuild",
"bundlesize",
"webpack-bundle-analyzer"
],
"author": {
"name": "Drew Powers",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/drwpow/vite-plugin-bundlesize/issues"
},
"homepage": "https://github.com/drwpow/vite-plugin-bundlesize#readme",
"bin": {
"bundlesize": "./bin/cli.js"
},
"main": "dist/plugin/index.js",
"peerDependencies": {
"vite": ">= 5.0.0"
},
"dependencies": {
"picomatch": "^4.0.2",
"strip-ansi": "^7.1.0",
"vlq": "^2.0.4"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.11",
"@types/picomatch": "^2.3.4",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"del-cli": "^5.1.0",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vitest": "^1.6.0"
}
}