-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.17 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
{
"name": "mingpan",
"version": "1.0.0",
"description": "Chinese divination calculation engine — 八字、紫微斗数、六爻、梅花易数、大六壬、奇门遁甲",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "node --import tsx examples/bazi-example.ts"
},
"keywords": [
"chinese-astrology",
"bazi",
"four-pillars",
"ziwei-doushu",
"purple-star",
"liuyao",
"i-ching",
"meihua",
"plum-blossom",
"daliuren",
"six-ren",
"qimen-dunjia",
"divination",
"fortune-telling",
"lunar-calendar",
"ganzhi"
],
"author": "釀玄齋 <niangxuanzhai@users.noreply.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Jam0731/MingPanPublic.git"
},
"homepage": "https://www.niangxuanzhai.top",
"dependencies": {
"iztro": "^2.5.0",
"lunar-javascript": "^1.7.3"
},
"devDependencies": {
"@types/node": "^20.11.17",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}