Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/python-wasm
Path: blob/main/core/wasi-js/package.json
1391 views
1
{
2
"name": "wasi-js",
3
"version": "1.7.3",
4
"description": "Javascript implementation of WASI for Node.js and the Browser.",
5
"main": "dist/index.js",
6
"scripts": {
7
"preinstall": "npx only-allow pnpm",
8
"clean": "rm -rf dist",
9
"build": "tsc -b",
10
"tsc": "tsc -w",
11
"dev": "watch \"pnpm run build:dev\" src",
12
"docs": "typedoc src/ --out docs --target es6 --theme minimal --mode file"
13
},
14
"files": [
15
"dist/*",
16
"bin/*",
17
"README.md",
18
"package.json",
19
"tsconfig.json"
20
],
21
"repository": {
22
"type": "git",
23
"url": "git+https://github.com/sagemathinc/cowasm.git"
24
},
25
"publishConfig": {
26
"access": "public"
27
},
28
"keywords": [
29
"wasi",
30
"webassembly",
31
"wasm",
32
"wasmer",
33
"abi",
34
"esm",
35
"es",
36
"module"
37
],
38
"bin": {
39
"wasi-run": "./bin/run.js"
40
},
41
"author": "William Stein <[email protected]>",
42
"license": "MIT",
43
"bugs": {
44
"url": "https://github.com/sagemathinc/cowasm/issues"
45
},
46
"homepage": "https://github.com/sagemathinc/cowasm/tree/main/core/wasi-js",
47
"dependencies": {
48
"@cowasm/memfs": "^3.5.1",
49
"@wapython/unionfs": "^4.5.7",
50
"debug": "^4.3.4",
51
"fflate": "^0.7.3",
52
"path-browserify": "^1.0.0",
53
"randomfill": "^1.0.4",
54
"typedarray-to-buffer": "^4.0.0"
55
},
56
"devDependencies": {
57
"jest": "^29.2.1",
58
"@types/jest": "^29.2.0",
59
"@types/filesystem": "^0.0.32",
60
"@types/node": "^18.11.3",
61
"@types/path-browserify": "^1.0.0",
62
"typescript": "^4.8.4"
63
}
64
}
65
66