forked from 0xobelisk/dubhe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.7 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
70
71
72
73
74
75
76
77
78
{
"name": "@0xobelisk/sui-common",
"version": "0.5.16",
"description": "Common low level logic shared between packages",
"keywords": [
"sui",
"obelisk labs",
"move",
"blockchain"
],
"type": "module",
"author": "team@obelisk.build",
"homepage": "https://github.com/0xobelisk/obelisk-engine/tree/main/packages/sui-common#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": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {
"*": {
"index": [
"./src/index.ts"
]
}
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "pnpm run build:js",
"build:js": "tsup && chmod +x ./dist/index.js",
"clean": "pnpm run clean:js",
"clean:js": "rimraf dist",
"dev": "tsup --watch",
"lint": "eslint . --ext .ts",
"test": "vitest"
},
"dependencies": {
"@mysten/sui": "^1.7.0",
"chalk": "^5.0.1",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"esbuild": "^0.17.15",
"execa": "^7.0.0",
"find-up": "^6.3.0",
"glob": "^8.0.3",
"path": "^0.12.7",
"prettier": "^3.1.1",
"prettier-plugin-move-js": "^0.0.5",
"prettier-plugin-rust": "^0.1.9",
"prettier-plugin-solidity": "^1.1.2",
"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",
"tsup": "^6.7.0",
"tsx": "^3.12.6",
"vitest": "^2.1.3"
}
}