-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "webgl-plot",
"version": "0.7.2",
"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": {
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"rollup": "^4.29.1",
"rollup-plugin-dts": "^6.1.1",
"typedoc": "^0.27.5",
"typedoc-plugin-markdown": "^4.3.3",
"typescript": "^5.7.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": "[email protected]"
}