-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.84 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 2.84 KB
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
112
113
{
"name": "rollup-plugin-webpack-stats",
"description": "Rollup/Vite/Rolldown plugin to generate a stats JSON file with a bundle-stats webpack-compatible structure",
"version": "3.1.1",
"private": false,
"license": "MIT",
"keywords": [
"vite",
"rolldown",
"rollup",
"vite-plugin",
"rolldown-plugin",
"rollup-plugin",
"stats",
"bundle-stats"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.cts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./transform": {
"import": {
"types": "./dist/transform.d.mts",
"default": "./dist/transform.mjs"
},
"require": {
"types": "./dist/transform.d.cts",
"default": "./dist/transform.cjs"
}
}
},
"engines": {
"node": ">=18"
},
"author": {
"name": "Viorel Cojocaru",
"email": "vio@relative-ci.com",
"url": "https://relative-ci.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/relative-ci/rollup-plugin-webpack-stats.git"
},
"bugs": {
"url": "https://github.com/relative-ci/rollup-plugin-webpack-stats/issues"
},
"homepage": "https://github.com/relative-ci/rollup-plugin-webpack-stats/blob/master/#readme",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && npm run type-check && tsdown",
"type-check": "tsc",
"lint": "eslint",
"format": "prettier --write .",
"test:unit": "vitest test/unit",
"@tsconfig/node18": "18.2.6",
"test:package": "npm run test:package:rollup && npm run test:package:vite",
"test:package:rollup": "cd test/package/rollup && vitest",
"test:package:vite": "cd test/package/vite && vitest",
"bump": "./scripts/bump.sh",
"release": "./scripts/release.sh",
"prepare": "husky"
},
"devDependencies": {
"@release-it/conventional-changelog": "10.0.6",
"@types/node": "25.6.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"memfs": "4.57.1",
"prettier": "3.8.1",
"release-it": "19.2.4",
"rimraf": "6.1.3",
"tsdown": "0.21.7",
"tslib": "2.8.1",
"typescript": "6.0.2",
"typescript-eslint": "8.58.1",
"vite": "7.3.2",
"vitest": "4.1.4"
},
"dependencies": {
"rollup-plugin-stats": "2.1.1"
},
"peerDependencies": {
"rolldown": "^1.0.0-beta.0",
"rollup": "^3.0.0 || ^4.0.0",
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"rolldown": {
"optional": true
},
"rollup": {
"optional": true
},
"vite": {
"optional": true
}
}
}