forked from jacomyal/sigma.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.93 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
{
"name": "@sigma/root",
"description": "A JavaScript library aimed at visualizing graphs of thousands of nodes and edges.",
"homepage": "https://www.sigmajs.org",
"bugs": "http://github.com/jacomyal/sigma.js/issues",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "npm exec --workspaces -- npx rimraf node_modules && npx rimraf node_modules",
"build": "preconstruct build && npm run build-bundle --workspace=sigma",
"prettify": "prettier --write .",
"lint": "eslint .",
"test": "npm run test --workspace=@sigma/test",
"start": "preconstruct dev && npm run start --workspace=@sigma/storybook",
"postinstall": "preconstruct dev",
"postpublish": "preconstruct dev",
"website:build": "npm run build --workspace=@sigma/website && npm run build --workspace=@sigma/demo && cp -R packages/demo/build packages/website/build/demo && npm run build --workspace=@sigma/storybook && cp -R packages/storybook/storybook-static packages/website/build/storybook",
"prepublishOnly": "npm run test && npm run build && npm run lint"
},
"dependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@preconstruct/cli": "^2.8.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-storybook": "^0.8.0",
"lerna": "^8.1.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.4.2",
"typescript-eslint": "^7.2.0"
},
"preconstruct": {
"packages": [
"packages/sigma",
"packages/node-border",
"packages/node-image",
"packages/node-piechart",
"packages/node-square",
"packages/edge-curve",
"packages/layer-leaflet",
"packages/layer-maplibre",
"packages/layer-webgl"
],
"exports": {
"importConditionDefaultExport": "default"
}
}
}