-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "tyme4ts",
"version": "1.1.5",
"description": "Tyme是一个非常强大的日历工具库,可以看作 Lunar 的升级版,拥有更优的设计和扩展性,支持公历和农历、星座、干支、生肖、节气、法定假日等。",
"main": "./dist/lib/index.cjs",
"module": "./dist/lib/index.mjs",
"types": "./dist/lib/index.d.ts",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"require": "./dist/lib/index.cjs",
"import": "./dist/lib/index.mjs"
}
},
"scripts": {
"build": "unbuild",
"test": "mocha -r ts-node/register --config=.mocharc.json",
"release": "npm run test && npm publish"
},
"homepage": "https://github.com/6tail/tyme4ts",
"repository": "https://github.com/6tail/tyme4ts.git",
"keywords": [
"公历",
"农历",
"儒略日",
"星座",
"干支",
"节气",
"法定假日"
],
"author": "6tail <6tail@6tail.cn> (https://6tail.cn)",
"license": "MIT",
"bugs": {
"url": "https://github.com/6tail/tyme4ts/issues"
},
"devDependencies": {
"@testdeck/mocha": "^0.3.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.5",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
}
}