Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/python-wasm
Path: blob/main/core/rogue/package.json
1391 views
1
{
2
"name": "@cowasm/rogue",
3
"version": "1.0.1",
4
"description": "WebAssembly build of the classic Rogue game",
5
"main": "index.js",
6
"files": ["dist/wasm/**", "README.md", "package.json", "index.js"],
7
"scripts": {
8
"preinstall": "npx only-allow pnpm",
9
"build": "make wasm",
10
"prepublishOnly": "pnpm run build && make test",
11
"test": "make test"
12
},
13
"bin": "bin/rogue",
14
"repository": {
15
"type": "git",
16
"url": "git+ssh://[email protected]/sagemathinc/cowasm.git"
17
},
18
"keywords": ["WebAssembly", "wasm"],
19
"author": "William Stein <[email protected]>",
20
"license": "BSD-3-Clause",
21
"bugs": {
22
"url": "https://github.com/sagemathinc/cowasm/issues"
23
},
24
"homepage": "https://github.com/sagemathinc/cowasm/tree/main/core/rogue",
25
"devDependencies": {
26
"@cowasm/ncurses": "workspace:*",
27
"@cowasm/posix-wasm": "workspace:*",
28
"@cowasm/termcap": "workspace:*"
29
},
30
"dependencies": {
31
"@cowasm/kernel": "workspace:*"
32
}
33
}
34
35