-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 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
{
"name": "visualizer-on-tabs",
"version": "2.0.2",
"description": "visualizer-on-tabs webpack builder",
"type": "module",
"exports": {
".": "./main/index.js"
},
"bin": "bin/build.js",
"files": [
"main",
"src",
"bin",
"!**/*.test.js"
],
"browserslist": [
"defaults"
],
"scripts": {
"build": "npx --no-install visualizer-on-tabs --config=./dev.json --outDir=./out",
"build:dev": "npx --no-install visualizer-on-tabs --dev --config=./dev.json --outDir=./out",
"clean": "rimraf out",
"eslint": "eslint bin main src",
"prettier": "prettier --check ./",
"prettier-write": "prettier --write ./",
"serve": "npx serve out/",
"test": "npm run test-only && npm run eslint && npm run prettier",
"test-only": "node --test"
},
"dependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"babel-loader": "^10.0.0",
"bootstrap": "^5.3.8",
"iframe-bridge": "^3.0.2",
"lockr": "^0.8.5",
"lodash": "^4.17.23",
"react": "^18.3.1",
"react-bootstrap": "^3.0.0-beta.3",
"react-dom": "^18.3.1",
"react-visualizer": "^5.4.0",
"webpack": "^5.105.2"
},
"devDependencies": {
"eslint": "^9.39.2",
"eslint-config-zakodium": "^19.1.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3"
},
"volta": {
"node": "24.7.0"
},
"engines": {
"node": ">=22"
}
}