-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
124 lines (124 loc) · 3.77 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
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
123
124
{
"name": "@sayari/trellis",
"version": "0.7.0-rc.16",
"description": "High-performance network visualization library, rendering to WebGL as well as other targets",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"clean": "rm -rf dist && rm -rf .parcel-cache",
"format": "prettier . --write",
"test": "vitest run",
"test:watch": "vitest --reporter verbose",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/**.{ts,tsx}\" --fix",
"perf": "parcel perf/index.html",
"build:tsc": "tsc --project ./tsconfig.json",
"build:umd": "parcel build --target umd",
"build": "npm run clean && npm run build:tsc && npm run build:umd",
"copy": "cp package* README.md LICENSE dist/",
"docs:dev": "npm run clean && parcel docs-src/index.html",
"docs:build": "rm -rf ./docs/ && parcel build ./docs-src/index.html --dist-dir docs/ --public-url https://sayari-analytics.github.io/trellis/ && cp ./docs-src/assets/og-image.png ./docs/",
"native:dev": "npm run dev --workspace=examples/native",
"react:dev": "npm run dev --workspace=examples/react",
"pub:pre": "./deploy.sh prerelease",
"pub:patch": "./deploy.sh patch",
"pub:minor": "./deploy.sh minor",
"pub:major": "./deploy.sh major"
},
"source": "./src/index.umd.ts",
"targets": {
"main": false,
"types": false,
"umd": {
"context": "browser",
"outputFormat": "global",
"distDir": "./dist"
}
},
"exports": {
".": {
"default": "./index.js",
"types": "./index.d.ts"
},
"./renderers/*": {
"default": "./renderers/*/index.js",
"types": "./renderers/*/index.d.ts"
},
"./bindings/react/*": {
"default": "./bindings/react/*.js",
"types": "./bindings/react/*.d.ts"
},
"./bindings/native/*": {
"default": "./bindings/native/*.js",
"types": "./bindings/native/*.d.ts"
},
"./layout/*": {
"default": "./layout/*/index.js",
"types": "./layout/*/index.d.ts"
}
},
"author": "James Conkling <[email protected]> jameslaneconkling.github.io",
"license": "ISC",
"dependencies": {
"@pixi/events": "^7.3.2",
"d3-force": "^3.0.0",
"d3-hierarchy": "^3.1.2",
"d3-interpolate": "^3.0.1",
"fontfaceobserver": "^2.3.0",
"pixi.js": "^7.3.2",
"stats.js": "^0.17.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.10.1",
"@parcel/transformer-typescript-tsc": "^2.10.1",
"@parcel/transformer-typescript-types": "^2.10.1",
"@turf/clusters-kmeans": "^6.5.0",
"@types/css-font-loading-module": "^0.0.10",
"@types/d3-force": "^3.0.7",
"@types/d3-hierarchy": "^3.1.5",
"@types/d3-interpolate": "^3.0.3",
"@types/d3-scale": "^4.0.6",
"@types/d3-scale-chromatic": "^3.0.1",
"@types/fontfaceobserver": "^2.1.3",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@types/stats.js": "^0.17.2",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"happy-dom": "^12.10.3",
"parcel": "^2.10.1",
"prettier": "^3.0.3",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6"
},
"keywords": [
"graph",
"network",
"infovis",
"visualization",
"react",
"webgl"
],
"peerDependencies": {
"react": ">=16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sayari-analytics/trellis.git"
},
"workspaces": [
"examples/native",
"examples/react"
]
}