-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 996 Bytes
/
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
{
"name": "account-tech-sdk",
"author": "Thouny <[email protected]>",
"version": "0.2.0",
"license": "MIT",
"description": "Kraken TypeScript SDK",
"files": [
"dist"
],
"type": "module",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"scripts": {
"clean": "rm -rf tsconfig.tsbuildinfo ./dist",
"build": "rm -rf dist/ && rm -rf tsconfig.tsbuildinfo && bun build:tsup",
"build:tsup": "tsup ./src/* --format esm,cjs --sourcemap",
"build:types": "tsc --build"
},
"dependencies": {
"@mysten/kiosk": "^0.9.33",
"@mysten/sui": "^1.17.0",
"@mysten/suins-toolkit": "^0.5.33",
"@polymedia/coinmeta": "^0.0.13",
"bun-types": "^1.0.25"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@types/bun": "latest",
"@types/chai": "^4.3.16",
"@types/node": "^20.12.12",
"chai": "^5.1.1",
"changeset": "^0.2.6",
"tsup": "^8.3.0",
"typescript": "^5.3.3"
}
}