-
-
Notifications
You must be signed in to change notification settings - Fork 522
/
package.json
52 lines (52 loc) · 1.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@vue/apollo-ssr",
"version": "4.0.0",
"description": "Apollo GraphQL for Vue - Server Side Rendering utilities",
"repository": {
"type": "git",
"url": "https://github.com/vuejs/vue-apollo.git",
"directory": "packages/vue-apollo-ssr"
},
"keywords": [
"vue",
"apollo",
"graphql",
"ssr"
],
"author": "Guillaume Chau <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue-apollo/issues"
},
"homepage": "https://apollo.vuejs.org/",
"publishConfig": {
"access": "public"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./*": "./*"
},
"files": [
"dist"
],
"scripts": {
"dev": "pnpm run build --watch",
"build": "rm -rf dist && tsc --outDir dist/esm -d && tsc --outDir dist/cjs --module commonjs --target ES2015 && node ./build.mjs",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"serialize-javascript": "^6.0.1"
},
"devDependencies": {
"@apollo/client": "^3.7.7",
"@types/serialize-javascript": "^5.0.2",
"typescript": "^4.7.4"
}
}