forked from open-pv/simshady
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.8 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
{
"name": "@openpv/simshady",
"version": "0.0.5",
"description": "Simulating Shadows for PV Potential Analysis on 3D Data on the GPU.",
"main": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"test-continuous": "vitest",
"format": "lint-staged",
"build": "tsup",
"prepare": "husky",
"docs": "typedoc src/index.ts src/utils.ts --plugin typedoc-plugin-mdn-links --plugin typedoc-plugin-coverage --plugin typedoc-plugin-rename-defaults --entryPointStrategy expand --excludePrivate true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-pv/simshady.git"
},
"keywords": [
"solar",
"photovoltaic",
"pv",
"threejs",
"three",
"webgl",
"gis",
"renewables",
"renewable energy"
],
"author": "Konrad Heidler <k.heidler@tum.de>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/open-pv/simshady/issues"
},
"homepage": "open-pv.github.io/simshady/",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/suncalc": "^1.9.2",
"@types/three": "^0.161.2",
"@types/webgl2": "^0.0.11",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typedoc": "^0.25.9",
"typedoc-plugin-coverage": "^3.1.0",
"typedoc-plugin-mdn-links": "^3.1.17",
"typedoc-plugin-rename-defaults": "^0.7.0",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"dependencies": {
"geotiff": "^2.1.3",
"suncalc": "^1.9.0",
"three": "^0.161.0"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"prettier --write"
]
}
}