-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "binary-effect",
"description": "Transform your images into stunning binary art.",
"version": "2.0.0",
"type": "module",
"license": "MIT",
"author": {
"name": "Rene Kaesler",
"email": "[email protected]",
"url": "https://renekaesler.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renekaesler/binary-effect.git"
},
"keywords": [
"WebComponents",
"CustomizedElements",
"WebGL"
],
"files": [
"README.md",
"dist"
],
"main": "./dist/binary-effect.umd.cjs",
"module": "./dist/binary-effect.js",
"exports": {
".": {
"import": "./dist/binary-effect.js",
"require": "./dist/binary-effect.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build-lib": "vite build --config vite.lib.config.js",
"preview": "vite preview",
"prepublishOnly": "npm run build-lib"
},
"dependencies": {
"lil-gui": "^0.20.0",
"twgl.js": "^5.5.4"
},
"devDependencies": {
"vite": "^6.0.11"
}
}