forked from 0xobelisk/dubhe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.57 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@0xobelisk/sui-cli",
"version": "0.5.20",
"description": "Tookit for interacting with move eps framework",
"keywords": [
"sui",
"obelisk labs",
"move",
"blockchain"
],
"type": "module",
"author": "[email protected]",
"homepage": "https://github.com/0xobelisk/obelisk-engine/tree/main/packages/sui-cli#readme",
"bugs": "https://github.com/0xobelisk/obelisk-engine/issues",
"repository": {
"type": "git",
"url": "https://github.com/0xobelisk/obelisk-engine.git"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"exports": {
".": "./dist/index.js"
},
"types": "src/index.ts",
"bin": {
"obelisk": "./dist/obelisk.js"
},
"scripts": {
"build": "pnpm run build:js",
"build:js": "tsup && chmod +x ./dist/obelisk.js",
"clean": "pnpm run clean:js",
"clean:js": "rimraf dist",
"dev": "tsup --watch",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@0xobelisk/sui-client": "^0.5.24",
"@0xobelisk/sui-common": "^0.5.16",
"@mysten/sui": "^1.7.0",
"chalk": "^5.0.1",
"child_process": "^1.0.2",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"execa": "^7.0.0",
"glob": "^8.0.3",
"path": "^0.12.7",
"prettier": "^2.8.4",
"prettier-plugin-rust": "^0.1.9",
"typescript": "5.1.6",
"yargs": "^17.7.1",
"zod": "^3.22.3",
"zod-validation-error": "^1.3.0"
},
"devDependencies": {
"@types/ejs": "^3.1.1",
"@types/glob": "^7.2.0",
"@types/node": "^18.15.11",
"@types/yargs": "^17.0.10",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"tsx": "^3.12.6",
"vitest": "0.31.4"
}
}