-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
97 lines (97 loc) · 2.51 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
{
"name": "rollup-plugin-visualizer",
"version": "5.12.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": "eslint 'plugin/**/*.ts' 'src/**/*.{ts,tsx}'",
"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": "jest"
},
"dependencies": {
"open": "^8.4.0",
"picomatch": "^2.3.1",
"source-map": "^0.7.4",
"yargs": "^17.5.1"
},
"peerDependencies": {
"rollup": "2.x || 3.x || 4.x"
},
"peerDependenciesMeta": {
"rollup": {
"optional": true
}
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.1",
"@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": "^2.3.0",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"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": "^5.0.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"picomatch-browser": "^2.2.6",
"postcss": "^8.4.14",
"postcss-url": "^10.1.3",
"preact": "^10.7.2",
"prettier": "^3.1.0",
"rollup": "^4.5.2",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.52.1",
"ts-jest": "^29.0.3",
"typescript": "~5.3.2"
},
"engines": {
"node": ">=14"
},
"keywords": [
"rollup-plugin",
"visualizer",
"network",
"treemap",
"sunburst",
"diagram"
]
}