-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·71 lines (71 loc) · 1.58 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
{
"name": "vector-field",
"version": "2.1.3",
"description": "A data structure and lookup for 3D vector fields (flow fields).",
"keywords": [
"vector-field",
"flow-field",
"3d",
"flow",
"vectors",
"lookup",
"noise",
"perlin"
],
"homepage": "https://github.com/dmnsgn/vector-field",
"bugs": "https://github.com/dmnsgn/vector-field/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/dmnsgn/vector-field.git"
},
"funding": [
{
"type": "individual",
"url": "https://paypal.me/dmnsgn"
},
{
"type": "individual",
"url": "https://commerce.coinbase.com/checkout/56cbdf28-e323-48d8-9c98-7019e72c97f3"
}
],
"license": "MIT",
"author": "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",
"devDependencies": {
"canvas-context": "^3.3.0",
"es-module-shims": "^1.10.0",
"simplex-noise": "^4.0.1",
"three": "^0.166.1",
"tweakpane": "^4.0.4"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.5.1",
"snowdev": ">=2.2.x"
},
"snowdev": {
"dependencies": [
"./three/examples/jsm/controls/OrbitControls.js",
"canvas-context",
"tweakpane",
"es-module-shims",
"simplex-noise",
"three"
],
"resolve": {
"exclude": [
"**.d.ts",
"**/three/examples/!(jsm/controls/OrbitControls.js)/**/*.*"
]
}
}
}