forked from muqiuhan/MLisp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 934 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 934 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
{
"name": "mlisp-monorepo",
"version": "1.0.0",
"private": true,
"description": "MLisp: A Lisp dialect in OCaml - Monorepo",
"scripts": {
"build": "npm run build:interpreter && npm run build:vscode",
"build:interpreter": "cd packages/interpreter && dune build",
"build:vscode": "cd packages/vscode-ext && dune build",
"bundle:vscode": "cd packages/vscode-ext && npm run bundle",
"test": "npm run test:interpreter",
"test:interpreter": "cd packages/interpreter && ./run_tests.sh",
"clean": "cd packages/interpreter && dune clean && cd ../vscode-ext && dune clean && rm -rf dist",
"install:vscode": "cd packages/vscode-ext && npm install",
"package:vscode": "cd packages/vscode-ext && npm run package"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/muqiuhan/MLisp.git"
},
"author": "Muqiu Han",
"license": "MPL-2.0"
}