-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 965 Bytes
/
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
{
"name": "esbuild-plugin-glsl-include",
"description": "A plugin for esbuild to preprocess GLSL #include pragmas",
"version": "0.0.5",
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"glsl",
"webgl",
"include",
"pragma",
"import"
],
"engines": {
"node": ">=12"
},
"scripts": {
"test": "ava test/*.spec.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ricardomatias/esbuild-plugin-glsl-include.git"
},
"bugs": {
"url": "https://github.com/ricardomatias/esbuild-plugin-glsl-include/issues"
},
"author": {
"name": "Ricardo Matias",
"url": "https://github.com/ricardomatias"
},
"devDependencies": {
"ava": "^3.15.0",
"esbuild": "^0.12.25"
}
}