-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 3.08 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
{
"name": "@uncharted.software/grafer",
"version": "0.15.1",
"packageManager": "[email protected]",
"description": "Large graph renderer",
"main": "build/lib/mod.js",
"types": "build/types/mod.d.ts",
"repository": "https://github.com/unchartedsoftware/grafer.git",
"author": "Uncharted Software",
"license": "Apache-2.0",
"type": "module",
"files": [
"build/dist",
"build/lib",
"build/types",
"src/"
],
"keywords": [
"graph",
"renderer",
"remote"
],
"scripts": {
"build": "run-p build:all build:types",
"build:all": "node esbuild.js --all",
"build:dist": "node esbuild.js --dist",
"build:examples": "node esbuild.js --examples",
"build:lib": "node esbuild.js --lib",
"build:types": "tsc --declaration --emitDeclarationOnly --skipLibCheck --project ./tsconfig.d.json --outDir ./build/types",
"clean": "run-p -n 'clean:**'",
"clean:build": "rimraf build",
"clean:cache": "rimraf .rts2_cache",
"develop": "yarn build:examples --watch --dev-server",
"esbuild": "node esbuild.js",
"examples": "run-s build:examples",
"lint": "eslint --config ./.eslintrc.cjs \"./{src,tests,examples}/**/*.{js,ts}\"",
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.cjs",
"prepack": "run-s clean build test lint && pinst --disable",
"pre-push": "run-p 'pre-push:**'",
"pre-push:lint": "yarn lint",
"pre-push:test": "yarn test",
"watch": "run-p 'watch:*'",
"watch:scripts": "yarn build:all --watch",
"watch:types": "yarn build:types --watch",
"_postinstall": "husky install",
"postpack": "pinst --enable"
},
"devDependencies": {
"@types/chai": "4.3.10",
"@types/chroma-js": "2.4.4",
"@types/mocha": "10.0.6",
"@types/resize-observer-browser": "0.1.11",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"chai": "4.3.10",
"copy": "0.3.2",
"esbuild": "0.14.54",
"esbuild-plugin-glslify": "1.0.1",
"eslint": "8.57.0",
"eslint-config-esnext": "4.1.0",
"eslint-plugin-import": "2.29.1",
"globby": "14.0.1",
"glslify-import": "3.1.0",
"husky": "8.0.3",
"karma": "6.4.3",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.2.0",
"karma-esbuild": "2.2.5",
"karma-mocha": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"lit": "3.1.2",
"live-server": "1.2.2",
"mocha": "10.3.0",
"npm-run-all": "4.1.5",
"pinst": "3.0.0",
"rimraf": "5.0.5",
"tslib": "2.6.2",
"typescript": "5.3.3",
"yargs": "17.7.2"
},
"dependencies": {
"@dekkai/data-source": "0.2.3",
"@dekkai/event-emitter": "1.1.0",
"chroma-js": "2.4.2",
"dekkai": "0.3.6",
"gl-matrix": "3.4.3",
"picogl": "0.17.9",
"potpack": "2.0.0",
"tweakpane": "1.5.8"
}
}