-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1006 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1006 Bytes
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": "gradient-gl",
"description": "Tiny WebGL library for procedural gradient animations. Deterministic. Seed-driven.",
"version": "1.5.0",
"bugs": "https://github.com/metaory/gradient-gl/issues",
"homepage": "https://metaory.github.io/gradient-gl/",
"repository": "git+https://github.com/metaory/gradient-gl.git",
"type": "module",
"keywords": [
"webgl",
"gradient",
"animation",
"background",
"shader",
"seed",
"deterministic",
"canvas"
],
"exports": {
".": "./index.js"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"shaders/*",
"docs/public/*",
"package.json"
],
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions"
],
"author": "metaory <metaory@gmail.com>",
"license": "MIT",
"scripts": {
"prepare": "ln -sf ../index.js docs/ && ln -sf ../shaders docs/",
"dev": "npm run prepare && npx vite docs"
}
}