-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.55 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
{
"name": "formyle",
"version": "0.0.21",
"description": "Advanced Vue 3 form conception",
"scripts": {
"dev": "vite example",
"build:example": "vite build example",
"build": "vite build",
"lint": "eslint --fix --ext .js,.vue src",
"test": "npm run test:unit",
"test:unit": "jest test/unit"
},
"keywords": [
"vue",
"vuejs",
"vue3",
"vite",
"form",
"form-builder"
],
"author": "Arnaud Doubremelle",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arnauddoub/formyle.git"
},
"files": [
"src",
"dist"
],
"main": "./dist/formyle.umd.js",
"module": "./dist/formyle.es.js",
"exports": {
".": {
"import": "./dist/formyle.es.js",
"require": "./dist/formyle.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"dependencies": {
"maska": "^1.5.0",
"tailwindcss": "^3.1.8",
"vue": "^3.2.40"
},
"devDependencies": {
"@heroicons/vue": "^2.0.12",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/babel-preset-app": "^5.0.8",
"@vue/compiler-sfc": "^3.2.40",
"@vue/test-utils": "^2.1.0",
"@vuelidate/core": "^2.0.0",
"@vuelidate/validators": "^2.0.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"postcss": "^8.4.17",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"vite": "^3.1.7",
"vue-router": "^4.1.6",
"vuex": "^4.1.0",
"vuex-map-fields": "^1.4.1"
}
}