|
| 1 | +{ |
| 2 | + "name": "vue-use-route-query", |
| 3 | + "version": "0.0.1", |
| 4 | + "author": "Kirill Romanov", |
| 5 | + "license": "MIT", |
| 6 | + "repository": { |
| 7 | + "type": "git", |
| 8 | + "url": "https://github.com/Djaler/vue-use-route-query" |
| 9 | + }, |
| 10 | + "keywords": [ |
| 11 | + "vue", |
| 12 | + "router", |
| 13 | + "vue-router", |
| 14 | + "query", |
| 15 | + "composition-api", |
| 16 | + "vue-composition-api" |
| 17 | + ], |
| 18 | + "scripts": { |
| 19 | + "preinstall": "npx only-allow pnpm", |
| 20 | + "lint": "eslint .", |
| 21 | + "lint:fix": "npm run lint -- --fix", |
| 22 | + "test": "vitest run", |
| 23 | + "test:watch": "vitest watch", |
| 24 | + "test:coverage": "vitest run --coverage", |
| 25 | + "check-es6": "es-check es2017 dist/index.js", |
| 26 | + "check-treeshake": "agadoo dist/index.mjs", |
| 27 | + "build": "vite build", |
| 28 | + "postbuild": "npm run check-es6 && npm run check-treeshake", |
| 29 | + "prerelease": "npm run lint && npm run test && npm run build", |
| 30 | + "release": "standard-version --preset @djaler/standard", |
| 31 | + "release:github": "conventional-github-releaser --preset @djaler/standard", |
| 32 | + "publish": "clean-publish" |
| 33 | + }, |
| 34 | + "files": [ |
| 35 | + "dist" |
| 36 | + ], |
| 37 | + "main": "dist/index.js", |
| 38 | + "module": "dist/index.mjs", |
| 39 | + "types": "dist/index.d.ts", |
| 40 | + "sideEffects": false, |
| 41 | + "packageManager": "[email protected]", |
| 42 | + "dependencies": { |
| 43 | + "async-queue-chain": "^1.0.1" |
| 44 | + }, |
| 45 | + "peerDependencies": { |
| 46 | + "@vue/composition-api": "^1.1.0", |
| 47 | + "vue": "^2.6.10", |
| 48 | + "vue-router": "^3.0.0" |
| 49 | + }, |
| 50 | + "devDependencies": { |
| 51 | + "@djaler/conventional-changelog-standard": "1.2.0", |
| 52 | + "@djaler/eslint-config-typescript": "0.0.7", |
| 53 | + "@vue/composition-api": "1.4.9", |
| 54 | + "@vue/test-utils": "1.3.0", |
| 55 | + "agadoo": "2.0.0", |
| 56 | + "c8": "7.11.0", |
| 57 | + "clean-publish": "4.0.0", |
| 58 | + "conventional-github-releaser": "3.1.5", |
| 59 | + "es-check": "6.2.1", |
| 60 | + "eslint": "7.32.0", |
| 61 | + "eslint-import-resolver-typescript": "2.7.1", |
| 62 | + "jsdom": "^19.0.0", |
| 63 | + "nano-staged": "0.6.0", |
| 64 | + "simple-git-hooks": "2.7.0", |
| 65 | + "simple-promise-mock": "^1.0.0", |
| 66 | + "standard-version": "9.3.2", |
| 67 | + "typescript": "4.6.3", |
| 68 | + "vite": "2.9.1", |
| 69 | + "vite-plugin-dts": "1.0.5", |
| 70 | + "vitest": "0.9.3", |
| 71 | + "vue": "2.6.14", |
| 72 | + "vue-router": "3.1.3", |
| 73 | + "vue-template-compiler": "2.6.14" |
| 74 | + }, |
| 75 | + "simple-git-hooks": { |
| 76 | + "pre-commit": "./node_modules/.bin/simple-git-hooks && ./node_modules/.bin/nano-staged" |
| 77 | + }, |
| 78 | + "nano-staged": { |
| 79 | + "*.{js,ts}": "eslint --fix" |
| 80 | + } |
| 81 | +} |
0 commit comments