-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.06 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.06 KB
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
{
"name": "@sciphergfx/json-fields",
"version": "1.1.6",
"description": "UI-agnostic React component for generating Form Fields from JSON with support for Chakra UI, Tailwind CSS, and shadcn/ui",
"private": false,
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": {
"name": "Seyi K. Ogunbowale"
},
"license": "MIT",
"type": "module",
"keywords": [
"json",
"form",
"fields",
"converter",
"react",
"chakra-ui",
"tailwind",
"shadcn",
"json-fields",
"json-to-form",
"ui-agnostic",
"components"
],
"homepage": "https://github.com/sciphergfx/json-fields",
"repository": {
"type": "git",
"url": "git+https://github.com/sciphergfx/json-fields.git"
},
"bugs": {
"url": "https://github.com/sciphergfx/json-fields/issues"
},
"engines": {
"node": ">=20.12.0",
"npm": ">=10.5.0"
},
"scripts": {
"dev": "vite",
"build": "npm run build:lib",
"build:stats": "rollup -c",
"build:app": "vite build",
"build:lib": "rollup -c",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"clean": "rm -rf dist node_modules",
"validate": "npm run lint && npm run build",
"vercel-build": "npm run build",
"predeploy": "npm run build",
"deploy:vercel": "vercel --prod",
"prepublishOnly": "npm run validate"
},
"files": [
"dist",
"lib",
"README.md",
"LICENSE",
"package.json"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"unpkg": "dist/json-fields.umd.min.js",
"jsdelivr": "dist/json-fields.umd.min.js",
"peerDependencies": {
"@chakra-ui/react": "^3.24.2",
"@emotion/react": "^11.14.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"peerDependenciesMeta": {
"@chakra-ui/react": {
"optional": true
},
"@emotion/react": {
"optional": true
}
},
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@chakra-ui/react": "^3.24.2",
"@emotion/react": "^11.14.0",
"@eslint/js": "^9.32.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-terser": "^0.4.4",
"@tailwindcss/postcss": "^4.1.12",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.32.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"gzip-size": "^7.0.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"rollup": "^4.46.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tailwindcss": "^4.1.12",
"util-inspect": "^0.1.8",
"vite": "^7.1.0"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0"
}
}