-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 910 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
39
40
{
"name": "federated-token",
"private": "true",
"version": "0.0.0",
"description": "Federate JWT tokens between Apollo servers",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"keywords": [
"graphql",
"authentication"
],
"author": "Lab Digital <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/labd/node-federated-token"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm turbo build",
"format": "turbo run format",
"lint": "turbo run lint",
"publish:ci": "pnpm build && pnpm changeset publish",
"test": "vitest run",
"test:ci": "vitest run --coverage"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@vitest/coverage-v8": "1.6.0",
"vitest": "1.6.0"
},
"dependencies": {
"turbo": "^2.2.3"
}
}