-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1004 Bytes
/
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
{
"name": "apollo-link-segment",
"type": "module",
"source": "src/index.js",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"version": "1.0.0",
"description": "Auto analytics for apollo apps",
"typings": "dist/index.d.ts",
"repository": "https://github.com/hobochild/apollo-link-segment",
"license": "MIT",
"keywords": [],
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"fmt": "prettier --write ./",
"fmt_check": "prettier --check ./",
"build": "microbundle && cp src/index.d.ts ./dist/"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"apollo-link": "^1.2.14",
"graphql-tag": "^2.12.6",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"microbundle": "^0.15.0",
"prettier": "^2.7.1",
"zen-observable": "^0.8.15"
},
"peerDependencies": {
"apollo-link": "^1.2.14"
}
}