-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.4 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
{
"name": "antd-form-composer",
"version": "1.0.2",
"description": "A powerful and flexible form composition library for React applications, built on top of Ant Design Form",
"license": "MIT",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.es.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.umd.js"
}
}
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"ci": "pnpm run lint && yarn type-check",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint . --ext .ts,.tsx",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint . --ext .ts,.tsx --fix",
"preview": "vite preview",
"prepare": "husky"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/revolabs-io/antd-form-composer.git"
},
"keywords": [],
"author": "Hung Pham - @revolabs-io",
"bugs": {
"url": "https://github.com/revolabs-io/antd-form-composer/issues"
},
"homepage": "https://github.com/revolabs-io/antd-form-composer#readme",
"peerDependencies": {
"antd": ">=4",
"react": ">=16"
},
"lint-staged": {
"*.{ts,tsx}": [
"pnpm run lint"
]
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@types/node": "22.10.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"@vitejs/plugin-react": "1.2.0",
"@vitejs/plugin-react-swc": "3.7.2",
"antd": "4.24.16",
"devmoji": "2.3.0",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-react-refresh": "0.4.16",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.7.2",
"vite": "6.0.2",
"vite-plugin-dts": "4.3.0",
"vite-plugin-checker": "0.8.0",
"vite-tsconfig-paths": "5.1.3"
}
}