-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 918 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 918 Bytes
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
{
"name": "@mtoken/sdk",
"version": "1.0.9",
"private": true,
"description": "A TypeScript SDK for interacting with the mToken program",
"author": "Suilend",
"license": "MIT",
"main": "./sdk/src/index.ts",
"exports": {
".": "./sdk/src/index.js"
},
"types": "./sdk/src/index.ts",
"scripts": {
"build": "rm -rf ./dist && bun tsc",
"eslint": "eslint --fix \"./sdk/src/**/*.ts\"",
"prettier": "prettier --write \"./sdk/src/**/*\"",
"lint": "bun eslint && bun prettier",
"release": "bun run build && bun ts-node ./prepublish.ts && cd ./dist && npm publish --access public"
},
"dependencies": {
"@mysten/sui": "^1.9.0",
"bn.js": "^5.2.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/chai": "^4.3.19",
"@types/jest": "^29.5.13",
"chai": "^5.1.1",
"jest": "^29.7.0"
}
}