-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "@formio/vue",
"version": "6.0.0-rc.1",
"description": "A vue.js renderer for form.io forms.",
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "vite build && tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formio/vue-formio.git"
},
"keywords": [
"Form.io",
"vue.js",
"forms"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/formio/vue-formio/issues"
},
"homepage": "https://github.com/formio/vue-formio#readme",
"peerDependencies": {
"@formio/core": "2.2.0",
"@formio/js": "5.0.0-rc.69",
"vue": "^3.4.15"
},
"devDependencies": {
"@formio/core": "2.2.0",
"@formio/js": "5.0.0-rc.69",
"@types/node": "^18.17.5",
"@types/vue": "^2.0.0",
"@vue/compiler-sfc": "^3.4.15",
"typescript": "^5.3.3",
"typescript-eslint-parser": "^22.0.0",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.2",
"vite-tsconfig-paths": "^4.3.1"
},
"files": [
"dist"
],
"dependencies": {
"@ungap/structured-clone": "^1.2.0"
}
}