12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "name": "modtool",
- "version": "0.0.0",
- "private": true,
- "type": "module",
- "scripts": {
- "dev": "vite",
- "build": "run-p type-check build-only",
- "preview": "vite preview",
- "build-only": "vite build",
- "type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
- "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
- "test": "vitest"
- },
- "dependencies": {
- "@guolao/vue-monaco-editor": "^1.5.1",
- "bootstrap": "^5.3.3",
- "fast-xml-parser": "^4.3.5",
- "jszip": "^3.10.1",
- "pinia": "^2.1.7",
- "vue": "^3.4.21",
- "yaml": "^2.4.1"
- },
- "devDependencies": {
- "@rushstack/eslint-patch": "^1.7.2",
- "@tsconfig/node18": "^18.2.2",
- "@types/node": "^20.11.26",
- "@vitejs/plugin-vue": "^5.0.4",
- "@vue/eslint-config-typescript": "^13.0.0",
- "@vue/tsconfig": "^0.5.1",
- "eslint": "^8.57.0",
- "eslint-plugin-vue": "^9.23.0",
- "npm-run-all": "^4.1.5",
- "typescript": "~5.4.2",
- "vite": "^5.1.6",
- "vitest": "^1.4.0",
- "vue-tsc": "^2.0.6"
- }
- }
|