-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.93 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 3.93 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
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@ficsysfr/jsonforms_builder",
"version": "2.0.2",
"description": "JSONForms renderers for Vue 3 built on Nuxt UI & Tailwind CSS",
"repository": "https://github.com/FicSysFR/jsonforms_builder.git",
"homepage": "https://ficsysfr.github.io/jsonforms_builder/",
"bugs": {
"url": "https://github.com/FicSysFR/jsonforms_builder/issues"
},
"author": "tacxou <12997062+tacxou@users.noreply.github.com> (https://github.com/tacxou)",
"contributors": [
{
"name": " tacxou",
"email": "12997062+tacxou@users.noreply.github.com",
"url": "https://github.com/tacxou"
},
{
"name": "Contributors",
"url": "https://github.com/FicSysFR/jsonforms_builder/graphs/contributors"
}
],
"license": "BSD-3-Clause",
"keywords": [
"jsonforms",
"vue",
"nuxt-ui",
"tailwindcss",
"form-builder",
"json-schema"
],
"type": "module",
"main": "./dist/json-formbuilder.cjs.js",
"module": "./dist/json-formbuilder.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/json-formbuilder.es.js",
"require": "./dist/json-formbuilder.cjs.js"
},
"./source": "./src/index.ts"
},
"files": [
"dist/**/*",
"src/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "yarn typecheck && vite build --config vite.config.ts",
"start:dev": "cd playground && vite --host --port 5174",
"build:playground": "cd playground && cross-env PLAYGROUND_BASE=/jsonforms_builder/play/ vite build",
"docs:dev": "vitepress dev docs --port 5173",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "biome check",
"typecheck": "vue-tsc -p tsconfig.json --noEmit",
"lint:fix": "biome check --write",
"format": "biome format --write",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:regression": "vitest run tests/regression",
"test:perf": "vitest run tests/performance",
"test:scripts": "node --test scripts/tests/*.test.mjs",
"changelog:build": "node scripts/build-changelog.mjs",
"changelog:check": "node scripts/build-changelog.mjs --check",
"package": "node scripts/package.mjs",
"package:check": "node scripts/package.mjs --check",
"release": "node scripts/release.mjs",
"coverage:renderers": "yarn build && tsx playground/examples/coverage.ts",
"mcp:build": "yarn --cwd mcp build",
"mcp:install": "yarn --cwd mcp install --frozen-lockfile"
},
"dependencies": {
"@internationalized/date": "^3.12.1",
"defu": "^6.1.4",
"radash": "^12.1.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.7",
"@iconify-json/lucide": "^1.2.111",
"@jsonforms/core": "^3.6.0",
"@jsonforms/vue": "^3.6.0",
"@nuxt/ui": "^4.8.1",
"@types/express": "^5.0.6",
"@types/multer": "^2.0.0",
"@types/node": "^22.10.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^3.2.4",
"@vue/language-plugin-pug": "^3.0.5",
"@vueuse/core": "^14.3.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"express": "^5.2.1",
"jsdom": "27.0.0",
"multer": "^2.0.2",
"rimraf": "^6.0.1",
"tailwindcss": "^4.3.0",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-pug": "^0.4.1",
"vitepress": "^1.6.4",
"vitepress-plugin-llms": "^1.13.4",
"vitest": "^3.2.4",
"vue": "^3.5.1",
"vue-router": "^4.5.0",
"vue-tsc": "^3.3.11"
},
"peerDependencies": {
"@jsonforms/core": "^3.6",
"@jsonforms/vue": "^3.6",
"@nuxt/ui": "^4.8",
"typescript": "^5",
"vue": "^3.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"engines": {
"node": ">=22.0.0",
"yarn": ">=1.22.0"
},
"packageManager": "yarn@1.22.22"
}