-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 996 Bytes
/
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
{
"name": "@tenado/lunarjs",
"version": "1.0.10",
"description": "js工具库,处理阳历与阴历相互转换,获取指定日期的农历、节日,星座、生肖等信息",
"keywords": [
"阳历",
"阴历",
"公历",
"农历",
"lunar",
"calendar",
"solar"
],
"type": "module",
"files": [
"lib"
],
"main": "./lib/lunarjs.umd.cjs",
"module": "./lib/lunarjs.js",
"exports": {
".": {
"require": "./lib/lunarjs.umd.cjs",
"import": "./lib/lunarjs.js"
}
},
"scripts": {
"test": "node ./example/index.js",
"transform": "node ./transform/index.js",
"build": "vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tenadolanter/lunarjs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tenadolanter/lunarjs/issues"
},
"homepage": "https://github.com/tenadolanter/lunarjs#readme",
"devDependencies": {
"vite": "^5.0.6"
}
}