-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.56 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.56 KB
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
{
"name": "webgpu-sky-atmosphere",
"version": "1.2.0",
"description": "A WebGPU implementation of Hillaire's atmosphere model. Renders the sky as a post-process.",
"type": "module",
"main": "dist/1.x/webgpu-sky-atmosphere.module.js",
"module": "dist/1.x/webgpu-sky-atmosphere.module.js",
"types": "dist/1.x/webgpu-sky-atmosphere.d.ts",
"files": [
"/dist/**"
],
"scripts": {
"docs": "typedoc src/webgpu-sky-atmosphere.ts",
"build": "rollup -c",
"lint": "eslint \"src/**/*.{js,ts,tsx}\""
},
"keywords": [
"WebGPU",
"Sky",
"Atmosphere",
"GPU",
"Graphics"
],
"author": "Lukas Herzberger",
"license": "MIT",
"bugs": {
"url": "https://github.com/JolifantoBambla/webgpu-sky-atmosphere/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JolifantoBambla/webgpu-sky-atmosphere.git"
},
"homepage": "https://jolifantobambla.github.io/webgpu-sky-atmosphere/",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@tsconfig/recommended": "1.0.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@webgpu/types": "^0.1.44",
"eslint": "^8.56.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-one-variable-per-var": "0.0.3",
"eslint-plugin-optional-comma-spacing": "^0.0.4",
"eslint-plugin-require-trailing-comma": "0.0.1",
"rollup": "^4.22.4",
"tslib": "^2.6.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
}
}