forked from u-blusky/sweph-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
53
{
"name": "sweph-wasm",
"version": "2.0.0",
"description": "High-precision Swiss Ephemeris WebAssembly library for professional astrological calculations. Includes 50+ celestial bodies, all house systems, planetary nodes, and asteroids in a single 1.9MB file with arc-second accuracy.",
"main": "js/astro-embedded.js",
"keywords": [
"astrology",
"ephemeris",
"astronomy",
"webassembly",
"wasm",
"swiss-ephemeris",
"planets",
"asteroids",
"horoscope",
"birth-chart",
"house-systems",
"planetary-positions",
"nodes",
"apsides",
"celestial-mechanics"
],
"author": "astroahava",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/astroahava/sweph-wasm.git"
},
"homepage": "https://github.com/astroahava/sweph-wasm",
"bugs": {
"url": "https://github.com/astroahava/sweph-wasm/issues"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"js/astro-embedded.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "cd lib/src && make embedded && make install",
"build:dev": "cd lib/src && make development && make install-dev",
"clean": "cd lib/src && make clean",
"test": "emrun index.html",
"verify": "cd lib/src && make verify"
},
"devDependencies": {
"emscripten": "^3.1.0"
},
"browser": "js/astro-embedded.js",
"types": "types/index.d.ts"
}