[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.3 kB 93 lines
1{ 2 "name": "vue-sanity", 3 "version": "0.8.0", 4 "description": "Sanity integration for VueJS", 5 "keywords": [ 6 "vue", 7 "vuejs", 8 "nuxt", 9 "sanity", 10 "composition-api", 11 "typescript", 12 "javascript" 13 ], 14 "repository": "danielroe/vue-sanity", 15 "license": "MIT", 16 "contributors": [ 17 { 18 "name": "Daniel Roe <daniel@roe.dev>", 19 "url": "https://github.com/danielroe" 20 } 21 ], 22 "sideEffects": false, 23 "main": "lib/index.js", 24 "module": "lib/index.es.js", 25 "types": "lib/index.d.ts", 26 "files": [ 27 "lib/**/*", 28 "lib/index.d.ts", 29 "!**/*.map" 30 ], 31 "scripts": { 32 "build": "yarn clean && yarn compile", 33 "clean": "rm -rf lib/*", 34 "compile": "siroc build", 35 "lint": "run-s lint:all:*", 36 "lint:all:eslint": "yarn lint:eslint --ext .js,.ts,.vue .", 37 "lint:all:prettier": "yarn lint:prettier \"**/*.{js,json,ts}\"", 38 "lint:eslint": "eslint --fix", 39 "lint:prettier": "prettier --write --loglevel warn", 40 "prepare": "yarn build", 41 "prepublishOnly": "yarn lint && yarn test", 42 "release": "release-it", 43 "test": "run-s test:*", 44 "test:types": "tsd", 45 "test:unit": "jest" 46 }, 47 "resolutions": { 48 "minimist": ">=1.2.5" 49 }, 50 "dependencies": { 51 "minify-groq": "^1.0.0", 52 "sanity-typed-queries": "^0.6.11" 53 }, 54 "devDependencies": { 55 "@release-it/conventional-changelog": "^1.1.4", 56 "@sanity/client": "^1.149.18", 57 "@sanity/image-url": "^0.140.19", 58 "@siroc/eslint-config": "^0.2.0", 59 "@siroc/jest-preset": "^0.2.0", 60 "@types/jest": "^26.0.9", 61 "@types/jsdom": "^16.2.3", 62 "@types/memory-fs": "^0.3.2", 63 "@vue/composition-api": "^1.0.0-beta.9", 64 "@vue/test-utils": "^1.0.3", 65 "codecov": "^3.7.2", 66 "flush-promises": "^1.0.2", 67 "jest": "^26.4.0", 68 "lint-staged": "^10.2.11", 69 "memory-fs": "^0.5.0", 70 "npm-run-all": "^4.1.5", 71 "prettier": "^2.0.5", 72 "release-it": "13.6.7", 73 "siroc": "^0.3.0", 74 "tsd": "^0.13.1", 75 "typescript": "^3.9.7", 76 "vue": "2", 77 "vue-server-renderer": "^2.6.11", 78 "yorkie": "^2.0.0" 79 }, 80 "peerDependencies": { 81 "@vue/composition-api": "^0.6.7", 82 "vue": "^2" 83 }, 84 "gitHooks": { 85 "pre-commit": "lint-staged" 86 }, 87 "tsd": { 88 "directory": "test/tsd", 89 "compilerOptions": { 90 "rootDir": "." 91 } 92 } 93}