-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 1.94 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
{
"name": "rollup-plugin-webpack-stats",
"version": "2.0.0",
"private": false,
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./transform": {
"import": "./dist/transform.mjs",
"require": "./dist/transform.cjs",
"types": "./build/transform.d.ts"
}
},
"author": {
"name": "Viorel Cojocaru",
"email": "[email protected]",
"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",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prebuild": "rimraf ./dist",
"build": "rollup -c rollup.config.mjs",
"lint": "exit 0",
"test:unit": "vitest test/unit",
"test:package": "cd test/package && vitest",
"bump": "./scripts/bump.sh",
"release": "./scripts/release.sh"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@release-it/conventional-changelog": "10.0.0",
"@rollup/plugin-typescript": "12.1.2",
"@tsconfig/node18": "18.2.4",
"@types/node": "22.10.7",
"dotenv": "16.4.7",
"husky": "9.1.7",
"memfs": "4.17.0",
"release-it": "18.1.1",
"rimraf": "6.0.1",
"rollup": "4.31.0",
"tslib": "2.8.1",
"typescript": "5.7.3",
"vitest": "3.0.3"
},
"peerDependencies": {
"rollup": "^3.0.0 || ^4.0.0"
},
"dependencies": {
"rollup-plugin-stats": "1.3.2"
}
}