{
"name": "@cowasm/kernel",
"version": "0.28.0",
"description": "@cowasm/kernel -- the Kernel of CoWasm: Collaborative WebAssembly for Servers and Browsers",
"main": "./dist/kernel/node.js",
"browser": "./dist/kernel/browser.js",
"files": [
"dist/**",
"README.md",
"package.json",
"tsconfig.json"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "make all",
"clean": "make clean",
"tsc": "tsc -w",
"test": "tsc && npx jest ./dist",
"test-watch": "npx jest --watch ./dist",
"strip": "find dist/ -type f -name \"*.wasm\" | xargs -n1 wasm-strip",
"prepublishOnly": "make clean && make OPT='-O ReleaseSmall'"
},
"bin": "./bin/cowasm",
"repository": {
"type": "git",
"url": "git+https://github.com/sagemathinc/cowasm.git"
},
"keywords": [
"python",
"webassembly"
],
"author": "William Stein <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/sagemathinc/cowasm/issues"
},
"homepage": "https://github.com/sagemathinc/cowasm/tree/main/core/kernel",
"dependencies": {
"dylink": "workspace:*",
"posix-node": "workspace:*",
"wasi-js": "workspace:*",
"awaiting": "^3.0.0",
"date-format": "^4.0.13",
"debug": "^4.3.4",
"lodash": "^4.17.21",
"uuid": "^8.3.2"
},
"devDependencies": {
"@cowasm/posix-wasm": "workspace:*",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.3",
"jest": "^29.2.1",
"typescript": "^4.8.4",
"wabt": "^1.0.29"
}
}