-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
75 lines (75 loc) · 1.54 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
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
75
{
"name": "vite-plugin-glsl",
"description": "Import, inline (and compress) GLSL shader files",
"homepage": "https://github.com/UstymUkhman/vite-plugin-glsl#readme",
"packageManager": "^[email protected]",
"types": "./src/index.d.ts",
"module": "./src/index.js",
"main": "./src/index.js",
"version": "1.3.1",
"private": false,
"license": "MIT",
"type": "module",
"author": {
"name": "Ustym Ukhman",
"email": "[email protected]",
"url": "https://github.com/UstymUkhman/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UstymUkhman/vite-plugin-glsl.git"
},
"bugs": {
"url": "https://github.com/UstymUkhman/vite-plugin-glsl/issues",
"email": "[email protected]"
},
"publishConfig": {
"save-dev": true,
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": "./src/index.js",
"./ext": {
"types": "./ext.d.ts"
}
},
"files": [
"package.json",
"README.md",
"yarn.lock",
"ext.d.ts",
"LICENSE",
"src"
],
"keywords": [
"vite",
"glsl",
"webgl",
"webgpu",
"vitejs",
"plugin",
"threejs",
"shaders",
"vite-plugin",
"glsl-shaders",
"webgl-shaders",
"webgpu-shaders"
],
"scripts": {
"test": "vite"
},
"peerDependencies": {
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"dependencies": {
"@rollup/pluginutils": "^5.1.0"
},
"devDependencies": {
"vite": "^6.0.1"
},
"engines": {
"node": ">= 16.15.1",
"npm": ">= 8.11.0"
}
}