-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.35 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
{
"name": "aws-manager",
"version": "0.2.4",
"description": "Convenience Tool for working with AWS, e.g. to generate a RDS short-lived passwords for IAM based authentication.",
"private": true,
"license": "CC-BY-NC-SA-3.0",
"author": {
"name": "DBL",
"email": "oss@dbl.works"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint src --ext .js,.vue",
"tauri:build": "tauri build",
"tauri:serve": "vite preview",
"tauri:dev": "tauri dev"
},
"dependencies": {
"@headlessui/vue": "^1.7.14",
"@heroicons/vue": "^2.0.18",
"@tauri-apps/api": "^1.5.0",
"vue": "^3.4.13"
},
"devDependencies": {
"@tauri-apps/cli": "latest",
"@vitejs/plugin-vue": "^2.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"postcss": "^8.4.24",
"tailwindcss": "^3.4.1",
"vite": "^2.8.0",
"vite-plugin-tauri": "^3.3.0",
"vue-eslint-parser": "^9.4.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parser": "vue-eslint-parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}