-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1004 Bytes
/
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-mipmaps-explainer",
"version": "0.0.1",
"description": "Explore mipmap and anisotropic filtering via WebGL2",
"main": "src/index.js",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"eslint": "^8.8.0",
"prettier": "^2.5.1",
"vite": "^2.8.0",
"vite-plugin-glsl": "^0.0.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnikoloff/webgl-mipmaps-explainer.git"
},
"keywords": [
"webgl",
"webgl2",
"mipmap",
"anisotropic",
"texturing"
],
"author": {
"name": "Georgi Nikolov",
"email": "nikoloffgeorgi@gmail.com",
"url": "https://georgi-nikolov.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/gnikoloff/webgl-mipmaps-explainer/issues"
},
"homepage": "https://github.com/gnikoloff/webgl-mipmaps-explainer#readme",
"dependencies": {
"gl-matrix": "^3.4.3",
"tweakpane": "^3.0.7"
}
}