-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (46 loc) · 969 Bytes
/
package.json
File metadata and controls
executable file
·46 lines (46 loc) · 969 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "pex-io",
"version": "3.2.0",
"description": "File I/O in PEX.",
"keywords": [
"pex",
"io",
"webgl",
"3d",
"text",
"json",
"image",
"binary"
],
"homepage": "https://github.com/pex-gl/pex-io",
"bugs": "https://github.com/pex-gl/pex-io/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/pex-gl/pex-io.git"
},
"license": "MIT",
"author": "Marcin Ignac <marcin.ignac@gmail.com> (http://marcinignac.com)",
"contributors": [
"Damien Seguin (https://github.com/dmnsgn)"
],
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./index.js"
}
},
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "snowdev build",
"dev": "snowdev dev",
"release": "snowdev release"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.5.1",
"snowdev": ">=2.7.x"
}
}