diff --git a/package.json b/package.json index 5481088..16a81f9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sortablejs-vue3", - "version": "1.2.9", + "version": "1.2.10", "author": { "email": "maxwell.leiter@gmail.com", "name": "Max Leiter", @@ -20,7 +20,8 @@ "build": "vite build && vue-tsc --emitDeclarationOnly --project tsconfig.dist.json && mv dist/lib dist/types && rm -rf dist/favicon.ico", "build:site": "vue-tsc --noEmit --project tsconfig.site.json && vite --config vite.site.config.ts build", "preview": "vite preview", - "lint": "yarn prettier --write '**/*.{ts,vue,json}'" + "lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src", + "format": "yarn prettier --write '**/*.{ts,vue,json}'" }, "types": "./dist/types/main.d.ts", "files": [ @@ -36,17 +37,25 @@ } }, "dependencies": { - "sortablejs": "^1.15.0", - "vue": "^3.2.37" + "pinia": "^2.1.3", + "sortablejs": "github:roy-mdr/Sortable#cee2ee7bccf83a7776c85588759aa0b8", + "vue": "^3.2.37", + "vue-eslint-parser": "^9.3.0" }, "peerDependencies": { - "sortablejs": "^1.15.0", + "sortablejs": "github:roy-mdr/Sortable#cee2ee7bccf83a7776c85588759aa0b8", "vue": "^3.2.25" }, "devDependencies": { + "@rushstack/eslint-patch": "^1.3.0", "@types/node": "18.14.2", "@types/sortablejs": "1.15.0", + "@typescript-eslint/parser": "^5.59.8", "@vitejs/plugin-vue": "4.0.0", + "@vue/eslint-config-typescript": "^11.0.3", + "eslint": "^8.42.0", + "eslint-config-prettier": "^8.8.0", + "eslint-plugin-vue": "^9.14.1", "prettier": "2.8.4", "terser": "5.16.5", "typescript": "4.9.5",