-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 640 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 640 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "vql-playground",
"version": "0.1.0",
"description": "VQL Playground — Interactive query editor for VeriSimDB",
"type": "module",
"license": "PMPL-1.0-or-later",
"author": "Jonathan D.A. Jewell <jonathan.jewell@open.ac.uk>",
"scripts": {
"res:build": "rescript",
"res:dev": "rescript -w",
"dev": "concurrently \"npm:res:dev\" \"npx serve public -l 3000\"",
"build": "rescript && node build.mjs",
"clean": "rescript clean"
},
"dependencies": {
"@rescript/core": "^1.0.0",
"rescript": "^12.0.0"
},
"devDependencies": {
"concurrently": "^9.0.0",
"esbuild": "^0.27.3"
}
}