Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/python-wasm
Path: blob/main/core/kernel/package.json
1391 views
1
{
2
"name": "@cowasm/kernel",
3
"version": "0.28.0",
4
"description": "@cowasm/kernel -- the Kernel of CoWasm: Collaborative WebAssembly for Servers and Browsers",
5
"main": "./dist/kernel/node.js",
6
"browser": "./dist/kernel/browser.js",
7
"files": [
8
"dist/**",
9
"README.md",
10
"package.json",
11
"tsconfig.json"
12
],
13
"scripts": {
14
"preinstall": "npx only-allow pnpm",
15
"build": "make all",
16
"clean": "make clean",
17
"tsc": "tsc -w",
18
"test": "tsc && npx jest ./dist",
19
"test-watch": "npx jest --watch ./dist",
20
"strip": "find dist/ -type f -name \"*.wasm\" | xargs -n1 wasm-strip",
21
"prepublishOnly": "make clean && make OPT='-O ReleaseSmall'"
22
},
23
"bin": "./bin/cowasm",
24
"repository": {
25
"type": "git",
26
"url": "git+https://github.com/sagemathinc/cowasm.git"
27
},
28
"keywords": [
29
"python",
30
"webassembly"
31
],
32
"author": "William Stein <[email protected]>",
33
"license": "BSD-3-Clause",
34
"bugs": {
35
"url": "https://github.com/sagemathinc/cowasm/issues"
36
},
37
"homepage": "https://github.com/sagemathinc/cowasm/tree/main/core/kernel",
38
"dependencies": {
39
"dylink": "workspace:*",
40
"posix-node": "workspace:*",
41
"wasi-js": "workspace:*",
42
"awaiting": "^3.0.0",
43
"date-format": "^4.0.13",
44
"debug": "^4.3.4",
45
"lodash": "^4.17.21",
46
"uuid": "^8.3.2"
47
},
48
"devDependencies": {
49
"@cowasm/posix-wasm": "workspace:*",
50
"@types/jest": "^29.2.0",
51
"@types/node": "^18.11.3",
52
"jest": "^29.2.1",
53
"typescript": "^4.8.4",
54
"wabt": "^1.0.29"
55
}
56
}
57
58