-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 894 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 894 Bytes
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
{
"name": "subgraph-linter",
"private": true,
"type": "module",
"version": "0.1.0",
"license": "Apache-2.0",
"description": "Static analysis tool for subgraph handlers (entity overwrite, null safety, division guards, and more)",
"repository": {
"type": "git",
"url": "https://github.com/graphops/subgraph-linter"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "node dist/index.js",
"check:fixtures": "node dist/index.js --tsconfig test-fixtures/tsconfig.json --manifest test-fixtures/subgraph.yaml",
"verify:fixtures": "bash scripts/run-verify-fixtures.sh"
},
"dependencies": {
"graphql": "^16.12.0",
"ts-morph": "^20.0.0",
"vscode-languageserver": "^8.1.0",
"vscode-languageserver-textdocument": "^1.0.8",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/node": "^20.11.30",
"typescript": "^5.4.5"
}
}