-
Notifications
You must be signed in to change notification settings - Fork 212
/
package.json
50 lines (50 loc) · 1.53 KB
/
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
41
42
43
44
45
46
47
48
49
50
{
"name": "graphprotocol-tools-monorepo",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/graphprotocol/graph-cli"
},
"homepage": "https://github.com/graphprotocol/graph-cli#readme",
"bugs": {
"url": "https://github.com/graphprotocol/graph-cli/issues"
},
"license": "(Apache-2.0 OR MIT)",
"private": true,
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9"
},
"scripts": {
"build": "pnpm --filter=@graphprotocol/graph-* build",
"lint": "pnpm lint:prettier && pnpm lint:eslint",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"lint:fix": "pnpm lint:prettier:fix && pnpm lint:eslint:fix",
"lint:prettier": "prettier -c .",
"lint:prettier:fix": "prettier . --write",
"lint:renovate": "npx --yes --package renovate -- renovate-config-validator",
"release": "pnpm build && changeset publish",
"test:cli": "pnpm --filter @graphprotocol/graph-cli test",
"test:ts": "pnpm --filter @graphprotocol/graph-ts test",
"type-check": "pnpm --filter=@graphprotocol/graph-cli type-check"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.16.0",
"@theguild/eslint-config": "0.13.2",
"@theguild/prettier-config": "3.0.0",
"@types/node": "^22.10.1",
"eslint": "9.16.0",
"prettier": "3.4.2"
},
"pnpm": {
"patchedDependencies": {
"oclif@4.16.0": "patches/oclif@4.16.0.patch"
},
"overrides": {
"rimraf": "^6.0.0"
}
}
}