This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
98 lines (98 loc) · 3 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
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": "@asigloo/vue-dynamic-forms",
"version": "0.0.0-development",
"description": "Easy way to dynamically create reactive forms in vue based on varying business object model",
"author": "Alvaro Saburido <alvaro.saburido@gmail.com>",
"scripts": {
"dev": "vite",
"dev:docs": "vitepress dev docs",
"build:docs": "vitepress build docs",
"serve:docs": "vitepress serve docs",
"build:demo": "vite build",
"build": "vite build --config vite-lib.config.ts",
"serve": "vite preview",
"build:tsc": "tsc src/index.ts --declaration --emitDeclarationOnly && yarn build",
"test:unit": "jest",
"test:e2e": "cypress open",
"test:e2e:ci": "cypress run",
"lint": "lint",
"build:dts": "api-extractor run --local --verbose && tail -n +7 >> dist/as-dynamic-forms.d.ts",
"postinstall": "is-ci || husky install",
"postpublish": "pinst --enable",
"prepublishOnly": "tsc --project tsconfig.json --noEmit && yarn build && pinst --disable",
"semantic-release": "semantic-release",
"test": "jest",
"test:components": "cypress open-ct",
"test:watch": "jest --verbose --no-cache --watchAll"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
},
"main": "dist/as-dynamic-forms.cjs.js",
"module": "dist/as-dynamic-forms.es.js",
"browser": "dist/as-dynamic-forms.es.js",
"unpkg": "dist/as-dynamic-forms.iife.js",
"jsdelivr": "dist/as-dynamic-forms.iife.js",
"exports": {
".": {
"import": "./dist/as-dynamic-forms.es.js",
"require": "./dist/as-dynamic-forms.umd.js"
},
"./dist/themes/": "./dist/themes/"
},
"dependencies": {
"deep-clone": "^3.0.3",
"deep-object-diff": "^1.1.7"
},
"devDependencies": {
"@asigloo/prettier-config": "^0.2.0",
"@cypress/vite-dev-server": "^2.2.2",
"@iconify/json": "^2.0.35",
"@microsoft/api-extractor": "^7.19.4",
"@tailwindcss/typography": "^0.5.1",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/compiler-sfc": "3.2.30",
"@vue/test-utils": "2.0.0-rc.17",
"autoprefixer": "^10.4.2",
"babel-core": "6.26.3",
"cypress": "^9.4.1",
"eslint": "8.8.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"node-sass": "7.0.1",
"pinst": "^2.1.6",
"postcss": "^8.4.6",
"prettier": "2.5.1",
"rollup": "^2.67.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-typescript2": "^0.31.2",
"sass": "^1.49.7",
"semantic-release": "19.0.2",
"tailwindcss": "^3.0.19",
"tailwindcss-animatecss": "^1.0.7",
"ts-node": "^10.5.0",
"typescript": "~4.5.5",
"unplugin-icons": "^0.13.1",
"unplugin-vue-components": "^0.17.18",
"vite": "^2.8.0",
"vite-plugin-pwa": "^0.11.13",
"vitepress": "^0.21.6",
"vue": "^3.2.30",
"vue-router": "^4.0.12",
"vue-select": "4.0.0-beta.2"
},
"types": "dist/as-dynamic-forms.d.ts"
}