forked from danchitnis/webgl-plot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "webgl-plot",
"version": "0.7.1",
"description": "High-performance 2D plotting library based on native WebGL",
"main": "./dist/webglplot.umd.js",
"type": "module",
"exports": {
".": {
"types": "./dist/webglplot.d.ts",
"require": "./dist/webglplot.cjs",
"import": "./dist/webglplot.esm.mjs"
},
"./package.json": "./package.json"
},
"module": "./dist/webglplot.esm.js",
"typings": "./dist/webglplot.d.ts",
"types": "./dist/webglplot.d.ts",
"keywords": [
"webgl",
"plot",
"realtime",
"opengl",
"2d",
"high-performance"
],
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"rollup": "^3.28.1",
"rollup-plugin-dts": "^6.0.0",
"typedoc": "^0.25.0",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.2.2"
},
"scripts": {
"build": "tsc && rollup -c && rollup --config rollup.config.dts.js",
"dts": "rollup --config rollup.config.dts.js",
"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",
"packageManager": "yarn@3.6.3"
}