66 lines
1.7 KiB
JSON
66 lines
1.7 KiB
JSON
{
|
|
"name": "@speckle/vue-apollo-composable",
|
|
"version": "4.0.0-beta.1",
|
|
"description": "Apollo GraphQL for Vue Composition API",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/specklesystems/apollo.git",
|
|
"directory": "packages/vue-apollo-composable"
|
|
},
|
|
"keywords": [
|
|
"vue",
|
|
"apollo",
|
|
"graphql",
|
|
"composition"
|
|
],
|
|
"author": "Guillaume Chau <guillaume.b.chau@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/vuejs/vue-apollo/issues"
|
|
},
|
|
"homepage": "https://apollo.vuejs.org/",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"module": "dist/index.esm.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"dev": "rimraf dist && nodemon --exec 'pnpm run build:code' --watch src --ext js,ts",
|
|
"build": "rimraf dist && pnpm run build:code",
|
|
"build:code": "node esbuild.mjs && tsc -d --emitDeclarationOnly",
|
|
"prepublishOnly": "pnpm run test && pnpm run build:code",
|
|
"test": "pnpm run test:types",
|
|
"test:types": "tsc -p tests/types/"
|
|
},
|
|
"dependencies": {
|
|
"throttle-debounce": "^3.0.1",
|
|
"ts-essentials": "^9.1.2",
|
|
"vue-demi": "^0.13.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@apollo/client": "^3.4.13",
|
|
"@vue/composition-api": "^1.0.0",
|
|
"graphql": ">=15",
|
|
"vue": "^2.6.0 || ^3.1.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@vue/composition-api": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@apollo/client": "^3.6.9",
|
|
"@types/throttle-debounce": "^2.1.0",
|
|
"graphql": "^15.8.0",
|
|
"graphql-tag": "^2.12.6",
|
|
"nodemon": "^1.19.4",
|
|
"rimraf": "^3.0.2",
|
|
"typescript": "^4.7.4",
|
|
"vue": "^3.2.37"
|
|
}
|
|
}
|