forked from mourner/suncalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "beaivi",
"type": "module",
"version": "0.1.1",
"description": "A tiny JavaScript library for calculating sun/moon positions and phases. Based on Suncalc.",
"homepage": "https://github.com/Glatek/beaivi",
"keywords": [
"sun",
"astronomy",
"math",
"calculation",
"sunrise",
"sunset",
"twilight",
"moon",
"illumination"
],
"license": "BSD",
"contributors": [
"Vladimir Agafonkin <[email protected]> (https://github.com/mourner)",
"Jeremy Karlsson <[email protected]> (https://github.com/enjikaka)"
],
"repository": {
"type": "git",
"url": "git://github.com/Glatek/beaivi.git"
},
"module": "./dist/index.js",
"exports": {
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"devDependencies": {
"@biomejs/biome": "1.5.2",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.1",
"vitest": "^1.2.1"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"biome": "npx @biomejs/biome check ./src",
"biome:fix": "npx @biomejs/biome check --apply ./src",
"prepublishOnly": "npx @skypack/package-check"
}
}