sun-position
Version:
Calculate the position of the sun for a specific date, time and location. Calculate sunrise and sunset
53 lines (52 loc) • 1.21 kB
JSON
{
"type": "commonjs",
"name": "sun-position",
"version": "0.1.2",
"description": "Calculate the position of the sun for a specific date, time and location. Calculate sunrise and sunset",
"main": "dist/sun-position.js",
"module": "dist/sun-position.mjs",
"types": "dist/sun-position.d.ts",
"exports": {
".": {
"import": "./dist/sun-position.mjs",
"require": "./dist/sun-position.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prepublish": "tsc",
"build": "del /s /q dist && tsup",
"compile": "del /s /q dist && tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fwerley/sun-position.git"
},
"keywords": [
"Sun",
"Position",
"Sunrise",
"Sunset"
],
"author": "Werley Ferreira",
"license": "ISC",
"bugs": {
"url": "https://github.com/fwerley/sun-position/issues"
},
"homepage": "https://github.com/fwerley/sun-position#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"browser-geo-tz": "^0.2.0"
}
}