Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/wapython
Path: blob/main/python/python-wasm/package.json
1067 views
1
{
2
"name": "python-wasm",
3
"version": "0.28.1",
4
"description": "python-wasm -- WebAssembly Python for servers and browsers with sympy, Cython, numpy, and more",
5
"main": "./dist/node.js",
6
"browser": "./dist/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": "pnpm exec tsc -w",
18
"test": "pnpm exec tsc && pnpm exec jest --no-watchman --runInBand ./dist",
19
"test-watch": "pnpm exec jest --watch ./dist",
20
"prepublishOnly": "make clean && make OPT='-O ReleaseSmall' all && pnpm exec jest --no-watchman --runInBand ./dist"
21
},
22
"bin": {
23
"python-wasm": "./bin/python-wasm"
24
},
25
"repository": {
26
"type": "git",
27
"url": "git+https://github.com/sagemathinc/cowasm.git"
28
},
29
"keywords": [
30
"python",
31
"webassembly"
32
],
33
"author": "William Stein <[email protected]>",
34
"license": "BSD-3-Clause",
35
"bugs": {
36
"url": "https://github.com/sagemathinc/cowasm/issues"
37
},
38
"homepage": "https://github.com/sagemathinc/cowasm/tree/main/python/python-wasm",
39
"dependencies": {
40
"@cowasm/kernel": "workspace:*",
41
"debug": "^4.3.4"
42
},
43
"devDependencies": {
44
"@cowasm/cpython": "workspace:*",
45
"@cowasm/posix-wasm": "workspace:*",
46
"@cowasm/py-cython": "workspace:*",
47
"@cowasm/py-mpmath": "workspace:*",
48
"@cowasm/py-numpy": "workspace:*",
49
"@cowasm/py-pandas": "workspace:*",
50
"@cowasm/py-sympy": "workspace:*",
51
"@types/jest": "^29.2.0",
52
"@types/node": "^18.11.3",
53
"awaiting": "^3.0.0",
54
"jest": "^29.2.1",
55
"typescript": "^4.8.4"
56
}
57
}
58
59