-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
96 lines (96 loc) · 2.4 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
{
"name": "rollup-plugin-visualizer",
"version": "5.14.0",
"main": "./dist/plugin/index.js",
"author": "Denis Bardadym <[email protected]>",
"license": "MIT",
"bin": "./dist/bin/cli.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "[email protected]:btd/rollup-plugin-visualizer.git"
},
"homepage": "https://github.com/btd/rollup-plugin-visualizer",
"bugs": {
"url": "https://github.com/btd/rollup-plugin-visualizer/issues"
},
"scripts": {
"lint": "oxlint -c .oxlintrc.json plugin src",
"format": "prettier plugin src --write --list-different",
"build": "run-p build:*",
"build:plugin": "tsc",
"build:frontend": "rollup -c rollup.config.js",
"build-dev": "rollup -c rollup.config-dev.js",
"clean": "del-cli dist",
"prebuild": "npm run clean",
"test": "vitest --run"
},
"dependencies": {
"open": "^8.4.0",
"source-map": "^0.7.4",
"yargs": "^17.5.1",
"picomatch": "^4.0.2"
},
"peerDependencies": {
"rolldown": "1.x",
"rollup": "2.x || 3.x || 4.x"
},
"peerDependenciesMeta": {
"rollup": {
"optional": true
},
"rolldown": {
"optional": true
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.0.0",
"@types/bytes": "^3.1.1",
"@types/d3-array": "^3.0.3",
"@types/d3-color": "^3.1.0",
"@types/d3-force": "^3.0.3",
"@types/d3-hierarchy": "^3.1.0",
"@types/d3-scale": "^4.0.2",
"@types/d3-shape": "^3.1.0",
"@types/node": "^18.8.5",
"@types/picomatch": "^3.0.0",
"@types/yargs": "^17.0.10",
"bytes": "^3.1.2",
"d3-array": "^3.1.6",
"d3-color": "^3.1.0",
"d3-force": "^3.0.0",
"d3-hierarchy": "^3.1.2",
"d3-scale": "^4.0.2",
"d3-shape": "^3.1.0",
"del-cli": "^6.0.0",
"npm-run-all": "^4.1.5",
"oxlint": "^0.15.3",
"postcss": "^8.4.14",
"postcss-url": "^10.1.3",
"preact": "^10.7.2",
"prettier": "^3.1.0",
"rolldown": "^1.0.0-beta.1",
"rollup": "^4.5.2",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.52.1",
"tslib": "^2.8.1",
"typescript": "~5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18"
},
"keywords": [
"rollup-plugin",
"visualizer",
"network",
"treemap",
"sunburst",
"diagram"
]
}