forked from nonzzz/vite-bundle-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.14 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "vite-bundle-analyzer",
"version": "0.10.6",
"description": "a vite bundle analyzer",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"dev": "vite src/client",
"dev:plugin": "rollup --config rollup.config.mts --configPlugin swc3 --watch",
"build": "pnpm run build:client && pnpm run build:plugin",
"build:client": "vite build src/client",
"build:plugin": "rollup --config rollup.config.mts --configPlugin swc3",
"test": "c8 -r=lcov ava __tests__/*.spec.ts",
"lint": "eslint . --fix"
},
"devDependencies": {
"@carrotsearch/foamtree": "^3.5.1",
"@iconify-json/ph": "^1.1.12",
"@jridgewell/source-map": "^0.3.6",
"@jridgewell/trace-mapping": "^0.3.25",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-esm-shim": "^0.1.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@stylex-extend/core": "^0.3.1",
"@stylex-extend/react": "^0.3.1",
"@stylexjs/stylex": "^0.6.1",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@swc-node/register": "^1.9.0",
"@swc/core": "^1.4.16",
"@types/node": "^20.7.0",
"@types/react": "^18.2.31",
"@types/react-dom": "18.2.7",
"@vitejs/plugin-react": "^4.2.1",
"ansis": "^3.3.2",
"ava": "^5.3.1",
"c8": "^8.0.1",
"dprint": "^0.46.0",
"eslint": "^8.49.0",
"eslint-config-kagura": "^2.2.1",
"foxact": "^0.2.29",
"lightningcss": "^1.24.1",
"preact": "^10.19.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.13.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-swc3": "^0.11.2",
"typescript": "^5.2.2",
"unplugin-icons": "^0.18.5",
"vite": "^5.2.8",
"vite-plugin-stylex-dev": "^0.7.4"
},
"license": "MIT",
"author": "kanno",
"pnpm": {
"overrides": {
"vite": "^5.2.8",
"@types/react": "^18.2.31",
"array-includes": "npm:@nolyfill/array-includes@^1",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"object.assign": "npm:@nolyfill/object.assign@^1",
"object.entries": "npm:@nolyfill/object.entries@^1",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1",
"object.values": "npm:@nolyfill/object.values@^1"
},
"patchedDependencies": {
"@rollup/[email protected]": "patches/@[email protected]"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nonzzz/vite-bundle-analyzer.git"
},
"keywords": [
"vite",
"rollup",
"rollup-plugin",
"vite-plugin",
"bundle-analyzer"
],
"ava": {
"files": [
"__tests__/*.spec.ts",
"e2e/**/*.spec.ts"
],
"extensions": [
"ts"
],
"require": [
"@swc-node/register"
],
"timeout": "30s"
}
}