-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 KB
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
46
47
48
49
50
51
{
"name": "umo",
"version": "0.1.0",
"type": "module",
"description": "Universal Modules - compile packages from any language into WASM modules importable by any other language",
"main": "dist/cli.js",
"bin": {
"umo": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"umo": "node dist/cli.js",
"test": "node test/run-tests.js",
"test:unit": "node --test test/unit/**/*.test.js",
"test:integration": "node --test test/integration/**/*.test.js",
"postinstall": "node scripts/check-tools.js || true",
"prepublishOnly": "npm run build"
},
"keywords": [
"webassembly",
"wasm",
"universal-modules",
"multi-language",
"runtime",
"typescript",
"python",
"go",
"rust",
"component-model",
"polyglot"
],
"author": "",
"license": "MIT",
"dependencies": {
"assemblyscript": "^0.27.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"execa": "^8.0.1",
"ora": "^7.0.1",
"pyodide": "^0.27.4"
},
"devDependencies": {
"@bytecodealliance/jco": "^1.15.4",
"@types/node": "^20.10.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}