@authing/vue-ui-components 4.4.0-alpha.7 → 4.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,27 +1,101 @@
1
1
  {
2
2
  "name": "@authing/vue-ui-components",
3
- "version": "4.4.0-alpha.7",
4
- "description": "Authing Guard for Vue",
5
- "module": "dist/esm/guard.min.js",
6
- "types": "dist/typings/index.d.ts",
3
+ "description": "Authing Vue UI components",
7
4
  "files": [
8
- "dist",
9
- "package.json",
10
- "package-lock.json"
5
+ "lib",
6
+ "components"
11
7
  ],
8
+ "version": "4.4.0",
9
+ "keywords": [
10
+ "vue",
11
+ "vuejs",
12
+ "authing"
13
+ ],
14
+ "license": "MIT",
15
+ "main": "lib/index.min.js",
12
16
  "scripts": {
13
- "autoinstall": "npm ci",
14
- "build:lib": "node scripts/build.js",
15
- "release:official": "npm publish --verbose --access public",
16
- "release:alpha": "npm publish --verbose --tag=alpha --access public"
17
+ "clean": "rimraf ./lib",
18
+ "demo:serve": "vue-cli-service serve",
19
+ "demo:build": "vue-cli-service build",
20
+ "demo:lint": "vue-cli-service lint",
21
+ "lint": "eslint --ext .js,.vue components/",
22
+ "dev": "nodemon --exec 'npm run build:es' --watch src -e js,vue,styl",
23
+ "build:lib": "npm run clean && rollup -c config/rollup.config.js --environment NODE_ENV:production",
24
+ "build:browser": "rollup --config configs/rollup.config.browser.js",
25
+ "build:es": "rollup --config configs/rollup.config.es.js",
26
+ "build:umd": "rollup --config configs/rollup.config.umd.js"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": ""
31
+ },
32
+ "homepage": "",
33
+ "publishConfig": {
34
+ "access": "public",
35
+ "registry": "https://registry.npmjs.org"
17
36
  },
18
- "author": "https://github.com/authing",
19
- "license": "MIT",
20
37
  "dependencies": {
21
- "@authing/native-js-ui-components": "^4.4.0-alpha.7",
22
- "vue": "^3.2.20"
38
+ "@authing/native-js-ui-components": "^4.4.0"
23
39
  },
24
40
  "devDependencies": {
25
- "vue-loader": "^17.2.2"
26
- }
41
+ "@babel/core": "^7.0.0",
42
+ "@rollup/plugin-alias": "^3.1.8",
43
+ "@rollup/plugin-babel": "^5.3.1",
44
+ "@rollup/plugin-commonjs": "^21.0.1",
45
+ "@rollup/plugin-image": "^2.1.1",
46
+ "@rollup/plugin-json": "^4.1.0",
47
+ "@rollup/plugin-node-resolve": "^13.0.6",
48
+ "@types/html-minifier": "^4.0.1",
49
+ "@types/jest": "^26.0.23",
50
+ "@typescript-eslint/eslint-plugin": "^4.33.0",
51
+ "@typescript-eslint/parser": "^4.33.0",
52
+ "@vue/babel-preset-jsx": "^1.2.4",
53
+ "@vue/compiler-sfc": "^3.2.20",
54
+ "@vue/test-utils": "^2.0.0-rc.6",
55
+ "autoprefixer": "^9.8.8",
56
+ "babel-jest": "^26.x",
57
+ "clean-css": "^5.2.4",
58
+ "esbuild": "^0.12.5",
59
+ "eslint": "^7.32.0",
60
+ "eslint-plugin-vue": "^7.20.0",
61
+ "jest": "26.6.3",
62
+ "jest-serializer-vue": "^2.0.2",
63
+ "jest-transform-stub": "^2.0.0",
64
+ "postcss": "^8.3.11",
65
+ "postcss-import": "^14.0.2",
66
+ "postcss-minify": "^1.1.0",
67
+ "postcss-preset-env": "^6.7.0",
68
+ "pre-commit": "^1.2.2",
69
+ "rimraf": "^3.0.2",
70
+ "rollup": "^2.59.0",
71
+ "rollup-plugin-babel": "^4.4.0",
72
+ "rollup-plugin-browsersync": "^1.3.3",
73
+ "rollup-plugin-commonjs": "^10.1.0",
74
+ "rollup-plugin-copy": "^3.4.0",
75
+ "rollup-plugin-css-only": "^3.1.0",
76
+ "rollup-plugin-esbuild": "^4.6.0",
77
+ "rollup-plugin-filesize": "^9.1.1",
78
+ "rollup-plugin-html2": "^3.1.0",
79
+ "rollup-plugin-polyfill-node": "^0.7.0",
80
+ "rollup-plugin-postcss": "^4.0.1",
81
+ "rollup-plugin-progress": "^1.1.2",
82
+ "rollup-plugin-replace": "^2.2.0",
83
+ "rollup-plugin-scss": "3",
84
+ "rollup-plugin-vue": "^6.0.0",
85
+ "ts-jest": "26.5.6",
86
+ "typescript": "^4.4.4",
87
+ "vue": "^3.2.20",
88
+ "vue-jest": "^5.0.0-alpha.10"
89
+ },
90
+ "peerDependencies": {
91
+ "vue": ">=2.5.13"
92
+ },
93
+ "resolutions": {
94
+ "upath": "1.1.0"
95
+ },
96
+ "browserslist": [
97
+ "> 10%",
98
+ "last 2 versions"
99
+ ],
100
+ "gitHead": "7de00d74a445790ded7a1649ee796a5a9cced4f6"
27
101
  }