Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/python-wasm
Path: blob/main/web/cowasm.sh/package.json
1391 views
1
{
2
"name": "cowasm-sh",
3
"version": "0.0.1",
4
"description": "CoWasm Shell cowasm.sh: lightweight WebAssembly UNIX shell",
5
"files": [
6
"dist/*",
7
"src/*",
8
"README.md",
9
"package.json",
10
"tsconfig.json",
11
"webpack.config.js",
12
"Makefile"
13
],
14
"scripts": {
15
"preinstall": "npx only-allow pnpm",
16
"clean": "rm -rf dist node_modules",
17
"build": "webpack",
18
"watch": "webpack --watch",
19
"serve": "webpack serve",
20
"http": "http-server dist",
21
"tsc": "pnpm exec tsc -w"
22
},
23
"repository": {
24
"type": "git",
25
"url": "git+https://github.com/sagemathinc/cowasm.git"
26
},
27
"keywords": [
28
"python",
29
"webassembly"
30
],
31
"author": "William Stein",
32
"license": "BSD-3-Clause",
33
"bugs": {
34
"url": "https://github.com/sagemathinc/cowasm/issues"
35
},
36
"homepage": "https://github.com/sagemathinc/cowasm/tree/main/packages/terminal",
37
"devDependencies": {
38
"dash-wasm": "workspace:*",
39
"@types/node": "^18.11.3",
40
"buffer": "^6.0.3",
41
"css-loader": "^6.7.1",
42
"events": "^3.3.0",
43
"html-webpack-plugin": "^5.5.0",
44
"http-server": "^14.1.1",
45
"node-polyfill-webpack-plugin": "^2.0.0",
46
"path-browserify": "^1.0.1",
47
"process": "^0.11.10",
48
"style-loader": "^3.3.1",
49
"ts-loader": "^9.3.1",
50
"typescript": "^4.8.4",
51
"util": "^0.12.4",
52
"webpack": "^5.73.0",
53
"webpack-cli": "^4.10.0",
54
"webpack-dev-server": "^4.9.3",
55
"xterm": "^5.0.0",
56
"xterm-addon-web-links": "^0.7.0"
57
}
58
}
59
60