-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.88 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.88 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
{
"name": "@tacxou/jsonforms_builder",
"version": "1.0.3",
"description": "Form Builder for JSONForms using Quasar Framework",
"repository": "https://github.com/tacxou/jsonforms_builder.git",
"author": "tacxou <[email protected]> (https://github.com/tacxou)",
"contributors": [
{
"name": " tacxou",
"email": "[email protected]",
"url": "https://github.com/tacxou"
},
{
"name": "Contributors",
"url": "https://github.com/tacxou/jsonforms_builder/graphs/contributors"
}
],
"license": "BSD-3-Clause",
"type": "module",
"main": "./dist/json-formbuilder.cjs.js",
"module": "./dist/json-formbuilder.es.js",
"unpkg": "./dist/json-formbuilder.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/json-formbuilder.es.js",
"require": "./dist/json-formbuilder.cjs.js"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "bunx vite build --config vite.config.ts",
"start:dev": "cd playground && bunx vite --host",
"posatbuild": "cpr README.md dist/README.md && cpr LICENSE dist/LICENSE && cpr package.json dist/package.json",
"test": "bun test",
"test:watch": "bun test --watch"
},
"dependencies": {
"@tiptap/extension-document": "^3.7.2",
"@tiptap/extension-heading": "^3.7.2",
"@tiptap/extension-highlight": "^3.7.2",
"@tiptap/extension-image": "^3.7.2",
"@tiptap/extension-paragraph": "^3.7.2",
"@tiptap/extension-text": "^3.7.2",
"@tiptap/extension-text-align": "^3.7.2",
"@tiptap/extension-text-style": "^3.7.2",
"@tiptap/extension-typography": "^3.7.2",
"@tiptap/pm": "^3.7.2",
"@tiptap/starter-kit": "^3.7.2",
"@tiptap/vue-3": "^3.7.2",
"dayjs": "^1.11.13",
"radash": "^12.1.1"
},
"devDependencies": {
"@jsonforms/core": "^3.6.0",
"@jsonforms/vue": "^3.6.0",
"@quasar/extras": "^1.17.0",
"@quasar/vite-plugin": "^1.10.0",
"@types/bun": "latest",
"@types/express": "^5.0.6",
"@types/multer": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/language-plugin-pug": "^3.0.5",
"cpr": "^3.0.1",
"eslint": "^9.32.0",
"express": "^5.2.1",
"multer": "^2.0.2",
"prettier": "^3.6.2",
"quasar": "^2.18.2",
"rimraf": "^6.0.1",
"sass-embedded": "^1.90.0",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-pug": "^0.4.1",
"vue": "^3.5.1"
},
"peerDependencies": {
"@quasar/extras": "^1",
"@jsonforms/core": "^3.6",
"@jsonforms/vue": "^3.6",
"quasar": "^2",
"typescript": "^5",
"vue": "^3.5"
},
"engines": {
"node": ">=22.0.0",
"bun": ">=1.0.0"
},
"packageManager": "[email protected]"
}