-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
76 lines (76 loc) · 2.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@cosmograph/cosmos",
"version": "1.6.1",
"description": "GPU-based force graph layout and rendering",
"jsdelivr": "dist/index.min.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "CC-BY-NC-4.0",
"repository": "git://github.com/cosmograph-org/cosmos.git",
"type": "module",
"scripts": {
"build": "rm -rf dist; rollup -c",
"watch": "rollup -c -w",
"lint": "eslint --cache ./src --ext .ts --ignore-path .gitignore",
"lint:staged": "npx lint-staged"
},
"engines": {
"node": ">=12.2.0",
"npm": ">=7.0.0"
},
"keywords": [
"graph",
"webgl",
"force",
"simulation",
"visualization"
],
"homepage": "https://cosmograph.app",
"author": "cosmograph-org",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/d3-array": "^3.0.3",
"@types/d3-color": "^3.1.0",
"@types/d3-ease": "^3.0.0",
"@types/d3-scale": "^4.0.2",
"@types/d3-selection": "^3.0.2",
"@types/d3-transition": "^3.0.1",
"@types/d3-zoom": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"@zerollup/ts-transform-paths": "^1.7.18",
"eslint": "^8.19.0",
"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-unicorn": "^43.0.1",
"lint-staged": "^13.0.3",
"pre-commit": "^1.2.2",
"rollup": "^2.76.0",
"rollup-plugin-glslify": "^1.3.0",
"rollup-plugin-typescript2": "^0.32.1",
"ttypescript": "^1.5.15",
"typescript": "^4.7.4"
},
"dependencies": {
"d3-array": "^3.2.0",
"d3-color": "^3.1.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",
"gl-bench": "^1.0.42",
"gl-matrix": "^3.4.3",
"random": "^4.1.0",
"regl": "^2.1.0"
},
"pre-commit": "lint:staged",
"lint-staged": {
"*.{js,ts}": "eslint --quiet --cache --fix"
}
}