-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.71 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.71 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
114
115
116
117
118
119
120
121
122
{
"name": "@powsybl/network-viewer",
"version": "3.5.0-dev.0",
"description": "TypeScript library to integrate PowSyBl network viewers in a JavaScript project.",
"author": "PowSyBl team",
"homepage": "https://www.powsybl.org/",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/powsybl/powsybl-network-viewer.git"
},
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/powsybl-network-viewer.umd.cjs",
"module": "./dist/powsybl-network-viewer.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/powsybl-network-viewer.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/powsybl-network-viewer.umd.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"check": "tsc --noEmit",
"check:pack": "attw --pack",
"build": "vite build",
"build:watch": "vite build --watch --mode development",
"build:all": "npm run build --workspaces && npm run build",
"prepublishOnly": "$npm_execpath run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"start": "vite demo/ --config demo/vite.config.ts",
"start:open": "vite demo/ --config demo/vite.config.ts --open",
"lint": "eslint --cache --report-unused-disable-directives --report-unused-inline-configs warn --max-warnings 0 .",
"lint:fix": "eslint --cache --report-unused-disable-directives --report-unused-inline-configs warn --fix .",
"lint:format": "prettier --cache --check .",
"lint:format:fix": "prettier --cache --write .",
"licenses-check": "license-checker --summary --excludePrivatePackages --production --onlyAllow \"$( jq -r .onlyAllow[] license-checker-config.json | tr '\n' ';')\" --excludePackages \"$( jq -r .excludePackages[] license-checker-config.json | tr '\n' ';')\"",
"pack:all": "npm pack --workspaces --include-workspace-root",
"publish:all": "npm publish --workspaces --include-workspace-root"
},
"workspaces": [
"packages/*"
],
"overrides": {
"@deck.gl/mapbox": {
"@types/mapbox-gl": "npm:mapbox-gl@^3.9.4"
}
},
"dependencies": {
"@deck.gl/core": "~9.2.0",
"@deck.gl/extensions": "~9.2.0",
"@deck.gl/layers": "~9.2.0",
"@deck.gl/mapbox": "~9.2.0",
"@luma.gl/constants": "~9.2.0",
"@luma.gl/core": "~9.2.0",
"@luma.gl/engine": "~9.2.0",
"@mapbox/mapbox-gl-draw": "<1.5.0",
"@powsybl/network-map-layers": "^3.5.0-dev.0",
"@powsybl/network-viewer-core": "^3.5.0-dev.0",
"@turf/boolean-point-in-polygon": "^7.2.0",
"cheap-ruler": "^4.0.0",
"geolib": "^3.3.4",
"mapbox-gl": "^3.9.4",
"maplibre-gl": "^4.7.1",
"react-map-gl": "^8.0.1",
"type-fest": "^5.5.0"
},
"peerDependencies": {
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^5.16.14",
"@mui/material": "^5.16.14",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-intl": "^7.1.6"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@eslint/js": "^9.25.1",
"@types/license-checker": "^25.0.6",
"@types/mapbox__mapbox-gl-draw": "^1.4.8",
"@types/node": "^22.13.4",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.7",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-testing-library": "^7.1.1",
"globals": "^16.0.0",
"jsdom": "^26.0.0",
"license-checker": "^25.0.1",
"minimatch": "^10.0.1",
"prettier": "^3.5.3",
"prettier-plugin-properties": "^0.3.0",
"rimraf": "^6.0.1",
"svgo": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"vite": "^7.2.4",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^4.0.18"
},
"packageManager": "npm@11.11.0+sha512.f36811c4aae1fde639527368ae44c571d050006a608d67a191f195a801a52637a312d259186254aa3a3799b05335b7390539cf28656d18f0591a1125ba35f973"
}