-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.75 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "luminawall",
"version": "0.1.0-alpha.5",
"description": "Beautiful, animated WebGL wallpaper engine with 10 shader presets for landing pages and web applications",
"type": "module",
"private": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./react": {
"import": "./dist/react.js",
"types": "./dist/react.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kun101/LuminaWall.git"
},
"keywords": [
"wallpaper",
"webgl",
"shader",
"animation",
"background",
"landing-page",
"react",
"glsl",
"canvas"
],
"author": "kun101",
"license": "MIT",
"scripts": {
"dev": "vite --config demo/vite.config.ts",
"build:demo": "vite build --config demo/vite.config.ts",
"build": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\" && tsc -p tsconfig.build.json",
"build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly true",
"preview": "vite preview --config demo/vite.config.ts",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"dependencies": {
"three": "^0.176.0"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@vitejs/plugin-react": "^5.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"typescript": "~5.8.2",
"vite": "^6.2.0"
}
}