-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"name": "@dreamonkey/vue-lx-forms",
"version": "0.0.2",
"description": "Builder for highly reactive forms following a bring-your-components approach. Based on Vue reactivity, full TypeScript support",
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./ --fix --report-unused-disable-directives",
"format": "prettier --write \"**/*.{json,md,graphql,vue,js,ts}\" --ignore-path .gitignore",
"build": "rimraf dist && tsc --declaration && copyfiles -f src/resolver.vue dist",
"deploy": "pnpm build && pnpm publish --tag latest"
},
"repository": {
"type": "git",
"url": "https://github.com/dreamonkey/vue-lx-forms"
},
"keywords": [
"vue",
"typescript",
"form",
"forms",
"reactive",
"components",
"helix",
"lx",
"dynamic"
],
"author": "Paolo Caleffi <[email protected]> (https://github.com/IlCallo)",
"license": "MIT",
"bugs": "https://github.com/dreamonkey/vue-lx-forms/issues",
"homepage": "https://github.com/dreamonkey/vue-lx-forms#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"install": "^0.13.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@babel/types": "^7.17.0",
"@types/lodash-es": "^4.17.5",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"copyfiles": "^2.4.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^8.4.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.5",
"vue": "^3.2.29"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"engines": {
"node": ">= 12.22.1",
"npm": ">= 6.14.12",
"yarn": ">= 1.17.3"
}
}