-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.6 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.6 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
{
"author": "Roberto Pintos López",
"bugs": {
"url": "https://github.com/inversify/graphql/issues"
},
"description": "InversifyJs GraphQL codegen package",
"dependencies": {
"@graphql-codegen/cli": "^7.0.0",
"@graphql-codegen/typescript": "^6.0.1",
"@graphql-codegen/typescript-resolvers": "^6.0.0",
"glob": "^13.0.6",
"prettier": "^3.8.3"
},
"devDependencies": {
"@graphql-codegen/plugin-helpers": "7.0.0",
"@types/node": "24.12.2",
"@vitest/coverage-v8": "4.1.5",
"eslint": "10.3.0",
"rimraf": "6.1.3",
"typescript": "6.0.3",
"vitest": "4.1.5"
},
"homepage": "https://inversify.io/framework/",
"keywords": [
"codegen",
"inversify",
"graphql",
"http",
"node",
"typescript"
],
"devEngines": {
"node": "^24.10.0",
"pnpm": "^10.13.1"
},
"license": "MIT",
"module": "lib/esm/index.js",
"exports": {
".": "./lib/esm/index.js"
},
"name": "@inversifyjs/graphql-codegen",
"peerDependencies": {},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inversify/graphql.git"
},
"scripts": {
"build": "tsc",
"build:clean": "rimraf lib",
"format": "prettier --write ./src",
"lint": "eslint ./src",
"prebuild": "pnpm run build:clean",
"test": "vitest run",
"test:integration": "pnpm run test --project Integration",
"test:coverage": "pnpm run test:unit --coverage",
"test:uncommitted": "pnpm run test --changed=HEAD",
"test:unit": "pnpm run test --project Unit"
},
"type": "module",
"version": "0.4.1"
}