-
Notifications
You must be signed in to change notification settings - Fork 257
/
package.json
76 lines (76 loc) · 2.26 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
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
74
75
76
{
"name": "iztro",
"version": "2.4.4",
"description": "轻量级紫微斗数星盘生成库。可以通过出生年月日获取到紫微斗数星盘信息、生肖、星座等信息。A lightweight kit to astrolabe generator of The Purple Star Astrology (Zi Wei Dou Shu). The Purple Star Astrology(Zi Wei Dou Shu) is a Chinese ancient astrology. You're able to get your horoscope and personality from the astrolabe",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"unpkg": "dist/iztro.min.js",
"jsdelivr": "dist/iztro.min.js",
"scripts": {
"build": "tsc",
"build:umd": "webpack",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts",
"test": "jest --config jestconfig.json --coverage",
"prepare": "yarn build",
"prepublishOnly": "npm test && yarn lint && yarn build:umd",
"preversion": "yarn lint",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*",
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SylarLong/iztro.git"
},
"keywords": [
"紫微斗數",
"紫微斗数",
"紫微斗数排盘",
"紫微斗數排盤",
"ziweidoushu",
"astrology",
"horoscope",
"ephemeris",
"zodiac",
"sign"
],
"author": "SylarLong",
"license": "MIT",
"bugs": {
"url": "https://github.com/SylarLong/iztro/issues",
"email": "[email protected]"
},
"homepage": "https://docs.iztro.com",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"babel-loader": "^9.1.3",
"eslint": "^8.47.0",
"eslint-config-standard-with-typescript": "^38.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"dayjs": "^1.11.10",
"i18next": "^23.5.1",
"lunar-lite": "^0.2.3"
}
}