-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.32 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.32 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
{
"name": "aws-manager",
"version": "0.3.0",
"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.23",
"@heroicons/vue": "2.2.0",
"@tauri-apps/api": "2.6.0",
"vue": "3.5.17"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.11",
"@tauri-apps/cli": "2.6.2",
"@vitejs/plugin-vue": "6.0.0",
"eslint": "9.31.0",
"eslint-plugin-vue": "10.3.0",
"tailwindcss": "4.1.11",
"vite": "7.0.4",
"vite-plugin-tauri": "4.0.0",
"vue-eslint-parser": "10.2.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"
]
}