2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-07-03 06:18:11 +00:00

chore: move package json to root (#813)

* chore: move package json to root folder

* chore: also lint prettier codestyle

* chore: configure ModManUi files to use lf eof

* chore: update npm versions

* chore: update README of ModMan

* chore: adjust ci to use package json of root folder
This commit is contained in:
Jan
2026-05-25 23:41:21 +02:00
committed by GitHub
parent 98a0d2f185
commit 414ff2f8d9
10 changed files with 745 additions and 691 deletions
+25 -30
View File
@@ -1,52 +1,47 @@
{
"name": "openassettools",
"name": "@openassettools/modman",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix",
"format": "prettier --write **/*.{js,ts,vue,html,json,yml,yaml,md}"
"build": "run-p build:type-check \"build:vite {@}\" --",
"build:vite": "vite build",
"build:type-check": "vue-tsc --build",
"lint": "run-p lint:eslint lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"format": "prettier --write ."
},
"dependencies": {
"@fontsource/inter": "5.2.8",
"@primeuix/themes": "2.0.3",
"pinia": "3.0.4",
"primevue": "4.5.5",
"vue": "3.5.32",
"vue-router": "5.0.4"
"vue": "3.5.34",
"vue-router": "5.0.7"
},
"devDependencies": {
"@tsconfig/node24": "24.0.4",
"@types/jsdom": "28.0.1",
"@types/node": "25.6.0",
"@vitejs/plugin-vue": "6.0.6",
"@vitest/eslint-plugin": "1.6.16",
"@types/jsdom": "28.0.3",
"@types/node": "25.9.1",
"@vitejs/plugin-vue": "6.0.7",
"@vitest/eslint-plugin": "1.6.17",
"@vue/eslint-config-prettier": "10.2.0",
"@vue/eslint-config-typescript": "14.7.0",
"@vue/test-utils": "2.4.6",
"@vue/test-utils": "2.4.10",
"@vue/tsconfig": "0.9.1",
"eslint": "10.2.1",
"eslint-plugin-vue": "10.8.0",
"jiti": "2.6.1",
"jsdom": "29.0.2",
"npm-run-all2": "8.0.4",
"eslint": "10.4.0",
"eslint-plugin-vue": "10.9.1",
"jiti": "2.7.0",
"jsdom": "29.1.1",
"npm-run-all2": "9.0.0",
"prettier": "3.8.3",
"sass": "1.99.0",
"sass": "1.100.0",
"typescript": "6.0.3",
"vite": "8.0.8",
"vite-plugin-vue-devtools": "8.1.1",
"vitest": "4.1.4",
"vue-tsc": "3.2.6"
},
"enginesComment": {
"npm": "Required for min-release-age setting"
},
"engines": {
"npm": ">=11.10.0"
"vite": "8.0.14",
"vite-plugin-vue-devtools": "8.1.2",
"vitest": "4.1.7",
"vue-tsc": "3.3.1"
}
}