-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "algoship",
"version": "1.1.2",
"description": "Battleship on the Algorand blockchain",
"type": "module",
"main": "lib/index.js",
"types": "src/index.ts",
"bin": {
"algoship": "lib/index.js"
},
"files": [
"lib",
"src",
"game_approval.teal.tok",
"game_close_out.teal.tok",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc -p .",
"typecheck": "tsc --noEmit -p .",
"start": "tsx src/index",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "rm -rf lib && npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jasonpaulos/algoship.git"
},
"author": "Jason Paulos",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonpaulos/algoship/issues"
},
"homepage": "https://github.com/jasonpaulos/algoship#readme",
"dependencies": {
"algosdk": "^3.0.0-beta.2",
"eventemitter3": "^4.0.6",
"js-sha512": "^0.8.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^22.5.0",
"@types/prompts": "^2.4.9",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18.0.0"
}
}