-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.1 KB
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
{
"name": "gradient-gl",
"description": "Tiny WebGL library for procedural gradient animations. Deterministic. Seed-driven.",
"version": "2.0.5",
"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/",
"build": "esbuild index.js --bundle --format=iife --define:import.meta.url='\"x:\"' --outfile=dist/gradient-gl.js",
"dev": "npm run prepare && npx vite docs"
}
}