|
1 | 1 | { |
2 | 2 | "name": "valory", |
3 | 3 | "private": true, |
| 4 | + "type": "module", |
4 | 5 | "license": "MIT", |
5 | 6 | "repository": "https://github.com/haxgun/valory", |
6 | 7 | "author": "MAGICX <[email protected]>", |
|
13 | 14 | }, |
14 | 15 | "scripts": { |
15 | 16 | "dev": "vite", |
16 | | - "build": "vue-tsc --noEmit && vite build", |
| 17 | + "build": "run-p type-check \"build-only {@}\" --", |
| 18 | + "build-only": "vite build", |
17 | 19 | "preview": "vite preview", |
18 | 20 | "serve": "vite build && vite preview", |
19 | | - "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore", |
| 21 | + "lint": "eslint . --fix", |
20 | 22 | "format": "prettier --write src/" |
21 | 23 | }, |
22 | 24 | "dependencies": { |
| 25 | + "vue": "^3.5.13", |
| 26 | + "vue-router": "^4.5.0", |
| 27 | + "pinia": "^2.2.6", |
23 | 28 | "@iconify/vue": "^4.1.2", |
24 | 29 | "@vueuse/core": "^10.11.1", |
25 | 30 | "copy-to-clipboard": "^3.3.3", |
|
34 | 39 | "vue-template-compiler": "^2.7.16" |
35 | 40 | }, |
36 | 41 | "devDependencies": { |
| 42 | + "@tsconfig/node22": "^22.0.0", |
| 43 | + "@types/node": "^22.9.3", |
| 44 | + "@vitejs/plugin-vue": "^5.2.1", |
| 45 | + "@vitejs/plugin-vue-jsx": "^4.1.1", |
| 46 | + "@vue/tsconfig": "^0.7.0", |
37 | 47 | "@intlify/unplugin-vue-i18n": "^1.6.0", |
38 | 48 | "@plugin-web-update-notification/vite": "^1.7.1", |
39 | 49 | "@rushstack/eslint-patch": "^1.10.4", |
40 | 50 | "@trivago/prettier-plugin-sort-imports": "^4.3.0", |
41 | | - "@vitejs/plugin-vue": "^4.6.2", |
42 | | - "@vue/eslint-config-prettier": "^8.0.0", |
| 51 | + "@vue/eslint-config-prettier": "^10.1.0", |
| 52 | + "@vue/eslint-config-typescript": "^14.1.3", |
43 | 53 | "@vue/runtime-dom": "^3.5.13", |
44 | 54 | "autoprefixer": "^10.4.20", |
45 | 55 | "eslint": "^9.16.0", |
46 | 56 | "eslint-config-prettier": "^9.1.0", |
47 | 57 | "eslint-plugin-vue": "^9.32.0", |
48 | 58 | "naive-ui": "^2.40.3", |
49 | | - "pinia": "^2.3.0", |
50 | 59 | "postcss": "^8.4.49", |
51 | 60 | "prettier": "^3.4.2", |
52 | 61 | "sass": "^1.82.0", |
53 | | - "typescript": "5.6.2", |
| 62 | + "typescript": "~5.6.3", |
54 | 63 | "unplugin-vue-components": "^0.25.2", |
55 | | - "vite": "^4.5.5", |
56 | | - "vue": "^3.5.13", |
57 | | - "vue-router": "^4.5.0", |
58 | | - "vue-tsc": "2.0.29" |
| 64 | + "npm-run-all2": "^7.0.1", |
| 65 | + "vite": "^6.0.1", |
| 66 | + "vite-plugin-vue-devtools": "^7.6.5", |
| 67 | + "vue-tsc": "^2.1.10" |
59 | 68 | } |
60 | 69 | } |
0 commit comments