[READ-ONLY] Mirror of https://github.com/danielroe/vue-sanity. Sanity integration for Vue Composition API
composition-api hacktoberfest javascript nuxt sanity typescript vue vuejs
0

Configure Feed

Select the types of activity you want to include in your feed.

vue-sanity / package.json
2.6 kB 97 lines
1{ 2 "name": "vue-sanity", 3 "version": "1.0.0-beta.0", 4 "description": "Sanity integration for VueJS", 5 "keywords": [ 6 "vue", 7 "vuejs", 8 "nuxt", 9 "sanity", 10 "typescript", 11 "javascript" 12 ], 13 "repository": "danielroe/vue-sanity", 14 "license": "MIT", 15 "contributors": [ 16 { 17 "name": "Daniel Roe <daniel@roe.dev>", 18 "url": "https://github.com/danielroe" 19 } 20 ], 21 "sideEffects": false, 22 "main": "lib/index.js", 23 "module": "lib/index.es.js", 24 "types": "lib/index.d.ts", 25 "files": [ 26 "lib/**/*", 27 "lib/index.d.ts", 28 "!**/*.map" 29 ], 30 "scripts": { 31 "build": "yarn clean && yarn compile", 32 "clean": "rm -rf lib/*", 33 "compile": "siroc build", 34 "lint": "yarn lint:all:eslint && yarn lint:all:prettier", 35 "lint:all:eslint": "yarn lint:eslint --ext .js,.ts,.vue .", 36 "lint:all:prettier": "yarn lint:prettier \"**/*.{js,json,ts}\"", 37 "lint:eslint": "eslint --fix", 38 "lint:prettier": "prettier --write --loglevel warn", 39 "prepare": "yarn build", 40 "prepublishOnly": "yarn lint && yarn test", 41 "release": "release-it", 42 "test": "yarn test:unit", 43 "test:unit": "jest" 44 }, 45 "husky": { 46 "hooks": { 47 "pre-commit": "lint-staged" 48 } 49 }, 50 "resolutions": { 51 "minimist": ">=1.2.5" 52 }, 53 "dependencies": { 54 "minify-groq": "^1.0.0", 55 "sanity-typed-queries": "^0.7.3" 56 }, 57 "devDependencies": { 58 "@babel/core": "^7.12.3", 59 "@babel/plugin-transform-runtime": "^7.12.1", 60 "@babel/preset-env": "^7.12.1", 61 "@babel/preset-typescript": "^7.12.1", 62 "@babel/runtime": "^7.12.1", 63 "@release-it/conventional-changelog": "^2.0.0", 64 "@sanity/client": "^2.0.1", 65 "@sanity/image-url": "^0.140.19", 66 "@siroc/eslint-config": "^0.2.0", 67 "@siroc/jest-preset": "^0.2.0", 68 "@types/jest": "^26.0.15", 69 "@types/jsdom": "^16.2.4", 70 "@types/memory-fs": "^0.3.2", 71 "@typescript-eslint/eslint-plugin": "^4.6.0", 72 "@typescript-eslint/parser": "^4.6.0", 73 "@vue/compiler-dom": "3.0.1", 74 "@vue/runtime-core": "3.0.1", 75 "@vue/server-renderer": "3.0.1", 76 "@vue/test-utils": "^2.0.0-beta.7", 77 "codecov": "^3.8.0", 78 "eslint": "^7.12.1", 79 "eslint-config-prettier": "^6.14.0", 80 "eslint-plugin-jest": "^24.1.0", 81 "eslint-plugin-prettier": "^3.1.4", 82 "expect-type": "^0.8.0", 83 "flush-promises": "^1.0.2", 84 "husky": "^4.3.0", 85 "jest": "^26.6.1", 86 "lint-staged": "^10.5.0", 87 "memory-fs": "^0.5.0", 88 "prettier": "^2.1.2", 89 "release-it": "14.2.0", 90 "siroc": "^0.4.0", 91 "typescript": "^4.0.5", 92 "vue": "3.0.1" 93 }, 94 "peerDependencies": { 95 "vue": "^3" 96 } 97}