-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 1.92 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
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
{
"name": "@maas/config",
"author": "Robin Scholz <https://github.com/robinscholz>, Christoph Jeworutzki <https://github.com/ChristophJeworutzki>",
"repository": "magicasaservice/config",
"version": "1.2.1",
"license": "MIT",
"devDependencies": {
"@release-it/bumper": "^6.0.1",
"eslint": "^9.16.0",
"prettier": "^3.4.2",
"release-it": "^17.11.0"
},
"peerDependencies": {
"@eslint/js": "^9.17.0",
"@nuxt/eslint-config": "^0.7.2",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.16.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.18.1"
},
"peerDependenciesMeta": {
"@eslint/js": {
"optional": false
},
"@nuxt/eslint-config": {
"optional": false
},
"@typescript-eslint/eslint-plugin": {
"optional": false
},
"@typescript-eslint/parser": {
"optional": false
},
"@vue/tsconfig": {
"optional": false
},
"eslint": {
"optional": false
},
"eslint-plugin-prettier": {
"optional": false
},
"prettier": {
"optional": false
},
"typescript": {
"optional": true
},
"typescript-eslint": {
"optional": false
}
},
"scripts": {
"release": "release-it",
"lint": "eslint ."
},
"files": [
"tsconfig/*",
"eslint-nuxt-preset.mjs",
"eslint-typescript-preset.mjs",
"prettier-preset.mjs"
],
"release-it": {
"git": {
"requireCleanWorkingDir": true
},
"npm": {
"allowSameVersion": true,
"publishConfig": {
"access": "public"
}
},
"plugins": {
"@release-it/bumper": {
"in": "package.json",
"out": [
"package.json"
]
}
}
},
"packageManager": "[email protected]"
}