-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.92 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "natalengine",
"version": "1.6.0",
"description": "Birth chart calculator for Western Astrology, Vedic (Jyotish), Human Design, and Gene Keys. Clean data output for apps and AI integrations.",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./mcp": "./src/mcp/index.js",
"./astrology": "./src/calculators/astrology.js",
"./humandesign": "./src/calculators/humandesign.js",
"./astronomy": "./src/calculators/astronomy.js",
"./bodygraph-data": "./src/data/bodygraph-svg-data.js",
"./render": "./src/render/bodygraph-svg.js",
"./gate-descriptions": "./src/data/gate-descriptions.js",
"./gate-lines": "./src/data/gate-lines.js",
"./channel-descriptions": "./src/data/channel-descriptions.js",
"./hexagram-descriptions": "./src/data/hexagram-descriptions.js",
"./gene-key-descriptions": "./src/data/gene-key-descriptions.js"
},
"bin": {
"natalengine-mcp": "src/mcp/index.js"
},
"files": [
"src",
"!src/main.js",
"!src/styles.css",
"!src/components"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"mcp": "node src/mcp/index.js",
"test": "node --test tests/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Unforced-Dev/natalengine.git"
},
"homepage": "https://natalengine.com",
"bugs": {
"url": "https://github.com/Unforced-Dev/natalengine/issues"
},
"keywords": [
"astrology",
"vedic",
"jyotish",
"sidereal",
"human-design",
"gene-keys",
"birth-chart",
"natal-chart",
"horoscope",
"nakshatra",
"astronomy",
"mcp",
"ai",
"claude"
],
"author": "unforced",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"vite": "^5.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"astronomy-engine": "^2.1.19"
}
}