-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.83 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.83 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
{
"name": "@cosmos.gl/graph",
"version": "3.0.0-beta.8",
"description": "GPU-based force graph layout and rendering",
"jsdelivr": "dist/index.min.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": "git://github.com/cosmosgl/graph.git",
"type": "module",
"files": [
"dist",
"CITATION.cff"
],
"scripts": {
"build": "vite build --mode es && vite build --mode umd",
"watch": "vite build --watch",
"lint": "eslint --cache ./src --ext .ts --ignore-path .gitignore",
"lint:staged": "npx lint-staged",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
},
"keywords": [
"graph",
"webgl",
"force",
"simulation",
"visualization"
],
"homepage": "https://cosmosgl.github.io/graph",
"author": "cosmos.gl",
"devDependencies": {
"@interacta/css-labels": "^0.6.0",
"@jls-digital/storybook-addon-code": "^1.0.4",
"@storybook/addon-essentials": "^8.4.5",
"@storybook/addon-interactions": "^8.4.5",
"@storybook/blocks": "^8.4.5",
"@storybook/html": "^8.4.5",
"@storybook/html-vite": "^8.4.5",
"@storybook/test": "^8.4.5",
"@types/d3-array": "^3.0.3",
"@types/d3-color": "^3.1.0",
"@types/d3-drag": "^3.0.7",
"@types/d3-ease": "^3.0.0",
"@types/d3-scale": "^4.0.2",
"@types/d3-scale-chromatic": "^3.0.3",
"@types/d3-selection": "^3.0.2",
"@types/d3-transition": "^3.0.1",
"@types/d3-zoom": "^3.0.1",
"@types/dompurify": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"d3-scale-chromatic": "^3.1.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-unicorn": "^43.0.1",
"lint-staged": "^13.0.3",
"pre-commit": "^1.2.2",
"remark-gfm": "^4.0.0",
"storybook": "^8.4.5",
"typescript": "^5.5.2",
"vite": "^6.4.1",
"vite-plugin-dts": "^4.3.0"
},
"dependencies": {
"@luma.gl/core": "~9.2.6",
"@luma.gl/engine": "~9.2.6",
"@luma.gl/shadertools": "~9.2.6",
"@luma.gl/webgl": "~9.2.6",
"d3-array": "^3.2.0",
"d3-color": "^3.1.0",
"d3-drag": "^3.0.0",
"d3-ease": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0",
"dompurify": "^3.2.6",
"gl-bench": "^1.0.42",
"gl-matrix": "^3.4.3",
"random": "^4.1.0"
},
"pre-commit": "lint:staged",
"lint-staged": {
"*.{js,ts}": "eslint --quiet --cache --fix"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}