-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 901 Bytes
/
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
{
"name": "@derschmale/spherical-harmonizer",
"version": "0.1.1",
"main": "build/sh.js",
"module": "build/sh.module.js",
"types": "build/types/main.d.ts",
"files": [
"build/**/*",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/DerSchmale/spherical-harmonizer.git"
},
"scripts": {
"build": "rollup -c",
"docs": "typedoc --out ./docs/ ./src/ --mode file"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"typedoc": "^0.19.2",
"typescript": "^4.1.3"
},
"keywords": [
"spherical harmonics",
"3d",
"irradiance",
"hdr",
"hdri"
]
}