forked from danchitnis/webgl-plot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "webgl-plot",
"version": "0.6.1",
"description": "High-performance 2D plotting library based on native WebGL",
"main": "./dist/webglplot.umd.js",
"exports": "./dist/webglplot.js",
"module": "./dist/webglplot.js",
"typings": "./dist/webglplot.d.ts",
"types": "./dist/webglplot.d.ts",
"keywords": [
"webgl",
"plot",
"realtime",
"opengl",
"2d",
"high-performance"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.22.0",
"rollup": "^2.41.2",
"typedoc": "^0.20.31",
"typedoc-plugin-markdown": "^3.6.0",
"typescript": "^4.2.3"
},
"scripts": {
"build": "tsc && rollup -c",
"doc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danchitnis/webgl-plot.git"
},
"author": "Danial Chitnis",
"license": "MIT",
"bugs": {
"url": "https://github.com/danchitnis/webgl-plot/issues"
},
"homepage": "https://github.com/danchitnis/webgl-plot",
"dependencies": {}
}