-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "@babylonjs/texture-tools",
"version": "1.0.0",
"description": "Babylonjs texture tools to generate pre-filtered environments and BRDF lookups.",
"author": {
"name": "Sebastien Vandenberghe"
},
"contributors": [
"Sebastien Vandenberghe"
],
"keywords": [
"PBR",
"Tools",
"Texture",
"BRDF",
"3D",
"IBL",
"javascript",
"html5",
"webgl",
"webgl2",
"webgpu",
"babylon"
],
"license": "MIT",
"readme": "README.md",
"typings": "dist/src/index.d.ts",
"main": "dist/src/index.js",
"files": [
"dist/src/**",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sebavan/BabylonjsTextureTools.git"
},
"scripts": {
"lint": "npx eslint . --ext .ts,.tsx",
"build": "npx webpack --config webpack.prod.js",
"start": "npx webpack-dev-server -d --open --config webpack.dev.js",
"devServer": "npx webpack-dev-server -d --config webpack.dev.js"
},
"dependencies": {
"@babylonjs/core": "^4.2.0",
"tslib": "^1.11.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.0",
"file-loader": "^6.0.0",
"raw-loader": "^4.0.1",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^5.94.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^4.2.2"
}
}