-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 989 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
{
"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": "biome format --fix",
"lint": "biome check",
"publish:ci": "pnpm build && pnpm changeset publish",
"publish:version": "pnpm changeset version && pnpm format",
"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": {
"@biomejs/biome": "^1.9.4",
"turbo": "^2.2.3"
}
}