-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.81 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.81 KB
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
{
"name": "@authup/vue2",
"version": "0.32.0",
"description": "This package contains auth related vue components.",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/"
],
"scripts": {
"build": "rm -rf ./dist && cross-env NODE_ENV=production rollup --config rollup.config.js",
"build:watch": "npm run build -- --watch",
"test": "",
"prepublishOnly": "npm run build",
"lint": "eslint --ext .ts ./src/",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [
"auth",
"module",
"typescript",
"template",
"auth-template",
"vue",
"list",
"form",
"oauth2",
"oauth2-client",
"domains",
"components"
],
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"license": "MIT",
"devDependencies": {
"@authup/core": "^0.32.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@fortawesome/fontawesome-free": "^6.4.0",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@tada5hi/eslint-config-vue-typescript": "^1.2.6",
"@types/node": "^18.15.11",
"@types/vuelidate": "^0.7.16",
"@zerollup/ts-transform-paths": "^1.7.18",
"bootstrap-vue": "^2.22.0",
"cross-env": "^7.0.3",
"eslint": "^8.37.0",
"ilingo": "^2.4.0",
"np": "^7.7.0",
"rapiq": "^0.8.0",
"rimraf": "^4.4.1",
"rollup": "^2.79.0",
"rollup-plugin-includepaths": "^0.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-vue": "^6.0.0",
"rollup-plugin-vue2": "^0.8.1",
"typescript": "^5.0.3",
"ttypescript": "^1.5.15",
"vue": "^2.7.14",
"vuelidate": "^0.7.7"
},
"dependencies": {
"@vue-layout/utils": "^1.3.15",
"nanoid": "^3.3.4",
"regenerator-runtime": "^0.13.11",
"smob": "^1.0.0"
},
"peerDependencies": {
"@authup/core": ">=0.32.0 <1.0.0",
"bootstrap-vue": "^2.x",
"ilingo": "^2.x",
"rapiq": ">=0.8.0 <1.0.0",
"vue": "^2.x",
"vuelidate": "^0.x"
}
}