-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 837 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 837 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
30
31
{
"name": "psimp",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"coreimp:build": "yarn workspace coreimp build",
"example": "yarn workspace example output",
"js:build": "yarn workspace js build",
"js:codegen": "yarn workspace js codegen",
"js:execute": "yarn workspace js execute",
"js:test": "yarn workspace js test",
"lua:build": "yarn workspace lua build",
"lua:codegen": "yarn workspace lua codegen",
"lua:execute": "yarn workspace lua execute",
"dart:build": "yarn workspace dart build",
"dart:codegen": "yarn workspace dart codegen",
"dart:execute": "yarn workspace dart execute"
},
"devDependencies": {
"purescript": "^0.13.8",
"spago": "^0.15.3"
},
"workspaces": [
"coreimp",
"example",
"js",
"lua",
"dart"
]
}