-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.18 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "agile-design",
"version": "1.0.0",
"main": "lib/index.js",
"module": "esm/index.js",
"typings": "esm/index.d.ts",
"files": [
"esm",
"lib",
"README.md",
"LICENSE"
],
"keywords": [
"react",
"component",
"components",
"typescript",
"frontend",
"react-component",
"ui",
"framework"
],
"author": "Oceanhhan",
"license": "MIT",
"homepage": "https://agile-design.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/Ocean-H1/AgileDesign.git"
},
"bugs": {
"url": "https://github.com/Ocean-H1/AgileDesign/issues"
},
"description": "An UI design language and React components implementation",
"sideEffects": [
"dist/*",
"esm/**/style/*",
"lib/**/style/*",
"*.less"
],
"scripts": {
"dev": "dumi dev",
"build:site": "rimraf doc-site && dumi build",
"build:types": "tsc -p tsconfig.build.json && cpr lib esm",
"preview:site": "pnpm build:site && serve doc-site",
"clean": "rimraf lib esm dist",
"test": "jest --passWithNoTests",
"build": "pnpm run clean && pnpm run build:types && gulp",
"commit": "git-cz",
"prepublishOnly": "pnpm run build"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"components/**/*.ts?(x)": [
"prettier --write",
"eslint --fix",
"git add"
],
"components/**/*.less": [
"stylelint --syntax less --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@iconify/react": "^5.0.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/prop-types": "^15.7.13",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@umijs/fabric": "^4.0.1",
"babel-plugin-typescript-to-proptypes": "^2.1.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"dumi": "^2.4.13",
"eslint": "^9.15.0",
"eslint-define-config": "^2.1.0",
"gulp": "^5.0.0",
"gulp-autoprefixer": "^9.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-less": "^5.0.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"serve": "^14.2.4",
"through2": "^4.0.2",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"classnames": "^2.5.1"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}