-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 888 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 888 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": "@ybouane/liquidglass",
"version": "1.0.3",
"description": "A liquid glass effect library for the web — apply realistic glass refraction, blur, and lighting to any HTML element.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist/",
"src/"
],
"scripts": {
"postinstall": "patch-package",
"build": "tsc && esbuild src/index.ts --bundle --format=esm --sourcemap --outfile=dist/index.js",
"dev": "tsc --watch"
},
"keywords": [
"liquidglass",
"glass",
"effect",
"webgl",
"shader",
"blur",
"refraction",
"ui"
],
"author": "",
"license": "MIT",
"devDependencies": {
"esbuild": "^0.28.0",
"html-to-image": "^1.11.11",
"patch-package": "^8.0.1",
"typescript": "^5.7.0"
}
}