-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeno.jsonc
More file actions
26 lines (26 loc) · 808 Bytes
/
deno.jsonc
File metadata and controls
26 lines (26 loc) · 808 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
{
"name": "@gfx/gl",
"version": "0.1.10",
"exports": {
".": "./mod.ts",
"./webgl": "./src/webgl/mod.ts",
"./ext/babylon": "./ext/babylon.ts",
"./gles23.2": "./api/gles23.2.ts"
},
"tasks": {
"parse-xml": "deno run -A --unstable ./scripts/parse_xml.ts",
"gen": "deno run -A --unstable ./scripts/emitter.ts",
"example:babylon": "deno run -A --unstable-ffi ./examples/babylon.ts",
"example:babylon2": "deno run -A --unstable-ffi ./examples/babylon2.ts",
"example:three": "deno run -A --unstable-ffi ./examples/three.ts",
"example:triangle": "deno run -A --unstable-ffi ./examples/triangle.ts",
"example:webgl": "deno run -A --unstable-ffi ./examples/webgl.ts"
},
"fmt": {
"files": {
"exclude": [
"./OpenGL-Registry"
]
}
}
}