-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.4 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
51
52
53
54
55
56
{
"name": "resgraph",
"version": "0.13.2",
"description": "Build GraphQL servers in ReScript.",
"main": "index.js",
"scripts": {
"prepublish": "npm run build",
"build": "rescript clean && npm run res:build && esbuild --external:vscode-jsonrpc --external:chokidar --platform=node --format=esm --bundle cli/Cli.mjs --outfile=dist/Cli.mjs --minify --tree-shaking",
"res:build": "rescript",
"res:watch": "rescript -w"
},
"bin": {
"resgraph": "dist/Cli.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zth/resgraph.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zth/resgraph/issues"
},
"homepage": "https://github.com/zth/resgraph#readme",
"peerDependencies": {
"@rescript/core": ">=1.5.0",
"rescript": ">=11.1.0",
"@glennsl/rescript-fetch": ">=0.2.0"
},
"dependencies": {
"chokidar": "^3.5.3",
"graphql-language-service": "^5.1.6",
"vscode-jsonrpc": "^5.0.1",
"rescript-nodejs": "^16.1.0",
"@glennsl/rescript-fetch": "^0.2.2"
},
"devDependencies": {
"@rescript/core": ">=1.5.0",
"dataloader": "^2.2.2",
"rescript": ">=11.1.0",
"chalk": "^5.2.0",
"esbuild": "^0.23.1"
},
"files": [
"bin/*",
"src/res",
"cli/*",
"dist/Cli.mjs",
"rescript.json",
"package.json",
"LICENSE",
"README.md",
"CHANGELOG.md"
]
}