-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 933 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": "@freewall/apollo-console-logger",
"version": "0.3.0",
"license": "MIT",
"author": "Michal Vaněk",
"private": false,
"repository": "https://github.com/FreeWall/apollo-console-logger",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"clean": "rimraf src docs .github .editorconfig .prettierrc .gitignore tsconfig.json",
"release": "npm run lint && npm run build && npm run clean"
},
"dependencies": {
"@apollo/client": "^3.7.4",
"graphql": "^16.6.0"
},
"devDependencies": {
"prettier": "2.7.1",
"rimraf": "^4.4.0",
"tsup": "^6.6.3",
"tsx": "^3.12.3",
"typescript": "^4.9.3"
},
"ct3aMetadata": {
"initVersion": "5.15.0"
},
"keywords": [
"graphql",
"apollo",
"apollo-client",
"apollo-link",
"logging"
]
}