-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
package.json
63 lines (63 loc) · 2.28 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
{
"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",
"createPackage": "ts-node bin/create-package.ts",
"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"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@preconstruct/cli": "^2.8.9",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-storybook": "^0.10.1",
"globals": "^15.11.0",
"lerna": "^8.1.8",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"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",
"packages/export-image",
"packages/utils"
],
"exports": {
"importConditionDefaultExport": "default"
}
}
}