-
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) · 802 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 802 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": "rescript-sql",
"version": "0.0.1",
"description": "",
"main": "index.js",
"bin": {
"rescript-sql": "./cli/index.mjs"
},
"scripts": {
"dev": "rescript build -w",
"start-example": "rm -f example/db.db && sqlite3 example/db.db < example/Schema.sql && node example/Example.mjs",
"generate-sql": "cli/index.mjs example/Schema_.mjs example/Schema.sql",
"generate-res": "cli/index.mjs example/Schema_.mjs example/Schema.res"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"better-sqlite3": "^8.4.0",
"rescript": "11.0.0-beta.3"
},
"dependencies": {
"@rescript/core": "^0.4.0",
"rescript-async-result": "github:dkirchhof/rescript-async-result"
},
"peerDependencies": {
"better-sqlite3": "^8.4.0"
}
}