-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
77 lines (77 loc) · 2.24 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
77
{
"name": "react-iztro",
"version": "1.3.5",
"description": "基于iztro实现的react紫微斗数星盘组件。A react component used to generate an astrolabe of ziweidoushu based on iztro.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"storybook": "storybook dev -p 6006",
"clean": "rimraf lib/",
"copy-files": "copyfiles -u 1 src/**/*.css lib/",
"build": "npm run clean && tsc && npm run copy-files",
"build:sb": "storybook build",
"build-storybook": "storybook build",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SylarLong/react-iztro.git"
},
"keywords": [
"iztro",
"ziweidoushu",
"紫微斗数",
"astrolabe",
"astrology",
"horoscope"
],
"author": "SylarLong",
"license": "MIT",
"bugs": {
"url": "https://github.com/SylarLong/react-iztro/issues",
"email": "[email protected]"
},
"homepage": "https://docs.iztro.com",
"devDependencies": {
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-interactions": "^7.4.0",
"@storybook/addon-links": "^7.4.0",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.0",
"@storybook/react": "^7.4.0",
"@storybook/react-vite": "^7.4.0",
"@storybook/react-webpack5": "^7.4.0",
"@storybook/testing-library": "^0.2.0",
"@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"copyfiles": "^2.4.1",
"eslint": "^8.49.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"storybook": "^7.4.0",
"typescript": "^5.0.1"
},
"dependencies": {
"classnames": "^2.3.2",
"iztro": "2.4.3",
"iztro-hook": "1.2.18",
"lunar-lite": "^0.2.3"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}