-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
76 lines (76 loc) · 2.11 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
76
{
"name": "three-good-godrays",
"version": "0.7.1",
"description": "Screen-space raymarched godrays for three.js using the pmndrs postprocessing library",
"main": "build/three-good-godrays.js",
"module": "build/three-good-godrays.esm.js",
"exports": {
".": {
"import": "./build/three-good-godrays.esm.js",
"require": "./build/three-good-godrays.js"
},
"./module": "./build/three-good-godrays.mjs"
},
"types": "build/three-good-godrays.d.ts",
"sideEffects": false,
"keywords": [
"three",
"threejs",
"godrays",
"postprocessing",
"raymarching"
],
"contributors": [
{
"name": "n8programs",
"url": "https://github.com/n8python"
},
{
"name": "Casey Primozic",
"url": "https://github.com/ameobea"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/ameobea/three-good-godrays.git"
},
"bugs": {
"url": "https://github.com/ameobea/three-good-godrays/issues"
},
"files": [
"build",
"types"
],
"engines": {
"node": ">= 0.13.2"
},
"scripts": {
"clean": "mkdir -p build && rimraf build types",
"copy-files": "cp -r demo/static/* public/demo",
"build:js": "node esbuild.mjs",
"build:js:min": "node esbuild.mjs -m",
"build:types": "tsc --declaration --emitDeclarationOnly && rm build/bluenoise.d.ts && mv build/index.d.ts build/three-good-godrays.d.ts",
"prepublishOnly": "run-s clean build:types build:js:min copy-files",
"prettier": "prettier --write \"src/**/*.{ts,js,tsx}\" && prettier --write \"demo/**/*.{ts,js,tsx}\""
},
"peerDependencies": {
"postprocessing": "^6.33.4",
"three": ">= 0.125.0 <= 0.168.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@types/dat.gui": "^0.7.12",
"@types/three": "^0.168.0",
"dat.gui": "^0.7.9",
"esbuild": "^0.19.11",
"esbuild-plugin-glsl": "1.x.x",
"eslint": "8.x.x",
"npm-run-all": "^4.1.5",
"postprocessing": "^6.34.1",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"three": "^0.168.0",
"three-demo": "^5.1.3",
"typescript": "^5.3.3"
}
}