-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "rescript-edgedb",
"version": "0.7.0",
"description": "Use EdgeDB in ReScript.",
"main": "src/EdgeDB.mjs",
"bin": "dist/Cli.js",
"scripts": {
"test": "bun test test/*.test.mjs",
"build:res": "rescript",
"build": "npm run build:res && esbuild --external:edgedb --external:chokidar --external:fast-glob --platform=node --bundle cli/Cli.mjs --outfile=dist/Cli.js --minify --tree-shaking",
"prepublish": "npm run build"
},
"sideEffects": false,
"keywords": [
"rescript",
"edgedb"
],
"files": [
"README.md",
"CHANGELOG.md",
"rescript.json",
"dist",
"src"
],
"repository": "https://github.com/zth/rescript-edgedb",
"author": "Gabriel Nordeborn",
"license": "MIT",
"dependencies": {
"chokidar": "^3.5.3",
"fast-glob": "^3.3.1"
},
"devDependencies": {
"@rescript/core": "1.3.0",
"esbuild": "^0.19.3",
"rescript": "^11.1.0",
"rescript-embed-lang": "0.4.0",
"rescript-nodejs": "^16.1.0"
},
"peerDependencies": {
"@rescript/core": ">= 1.3.0",
"edgedb": ">= 1.3.6",
"rescript": "^11.1.0",
"rescript-embed-lang": ">= 0.4.0"
}
}