Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/wapython
Path: blob/main/web/terminal/package.json
1067 views
1
{
2
"name": "@cowasm/terminal",
3
"version": "0.0.1",
4
"description": "Demo of browser based Python terminal using python-wasm and xterm.js",
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": ["python", "webassembly"],
28
"author": "William Stein",
29
"license": "BSD-3-Clause",
30
"bugs": {
31
"url": "https://github.com/sagemathinc/cowasm/issues"
32
},
33
"homepage": "https://github.com/sagemathinc/cowasm/tree/main/python/terminal",
34
"devDependencies": {
35
"python-wasm": "workspace:*",
36
"buffer": "^6.0.3",
37
"css-loader": "^6.7.1",
38
"events": "^3.3.0",
39
"html-webpack-plugin": "^5.5.0",
40
"node-polyfill-webpack-plugin": "^2.0.0",
41
"path-browserify": "^1.0.1",
42
"process": "^0.11.10",
43
"style-loader": "^3.3.1",
44
"ts-loader": "^9.3.1",
45
"typescript": "^4.8.4",
46
"util": "^0.12.4",
47
"webpack": "^5.73.0",
48
"webpack-cli": "^4.10.0",
49
"webpack-dev-server": "^4.9.3",
50
"xterm": "^4.19.0",
51
"http-server": "^14.1.1",
52
"@types/node": "^18.11.3"
53
}
54
}
55
56