-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.22 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.22 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
96
{
"name": "@maas/config",
"contributors": [
{
"name": "Robin Scholz",
"url": "https://github.com/robinscholz"
},
{
"name": "Christoph Jeworutzki",
"url": "https://github.com/ChristophJeworutzki"
}
],
"repository": "magicasaservice/config",
"version": "1.13.0",
"license": "MIT",
"devDependencies": {
"@release-it/bumper": "^7.0.5",
"eslint": "^9.32.0",
"prettier": "^3.6.2",
"release-it": "^19.0.4"
},
"peerDependencies": {
"@eslint/js": ">=9",
"@nuxt/eslint-config": ">=0",
"@typescript-eslint/eslint-plugin": ">=8",
"@typescript-eslint/parser": ">=8",
"@vue/eslint-config-typescript": ">=14",
"@vue/tsconfig": ">=0",
"eslint": ">=9",
"eslint-config-prettier": ">=9",
"eslint-plugin-prettier": ">=5",
"eslint-plugin-vue": ">=9",
"prettier": ">=3",
"prettier-plugin-tailwindcss": ">=0",
"typescript": ">=5",
"typescript-eslint": ">=8"
},
"peerDependenciesMeta": {
"@eslint/js": {
"optional": false
},
"@nuxt/eslint-config": {
"optional": false
},
"@typescript-eslint/eslint-plugin": {
"optional": false
},
"@typescript-eslint/parser": {
"optional": false
},
"@vue/eslint-config-typescript": {
"optional": false
},
"@vue/tsconfig": {
"optional": false
},
"eslint": {
"optional": false
},
"eslint-plugin-prettier": {
"optional": false
},
"eslint-plugin-vue": {
"optional": false
},
"prettier": {
"optional": false
},
"prettier-plugin-tailwindcss": {
"optional": false
},
"typescript": {
"optional": false
},
"typescript-eslint": {
"optional": false
}
},
"scripts": {
"release": "release-it",
"lint": "eslint .",
"uninstall": "pnpm dlx rimraf --glob ./**/node_modules --glob ./**/pnpm-lock.yaml",
"update:deps": "pnpm dlx taze -r -w",
"update:deps:major": "pnpm dlx taze major -r -w"
},
"files": [
"tsconfig/*",
"eslint-nuxt-preset.mjs",
"eslint-typescript-preset.mjs",
"eslint-vue-preset.mjs",
"prettier-plain-preset.mjs",
"prettier-preset.mjs"
],
"type": "module",
"packageManager": "pnpm@10.13.1"
}