-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.76 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.76 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@riva-labs/sdk",
"version": "1.0.0",
"description": "TypeScript SDK for Vaults from Riva Labs - A secure, production-ready tokenized vault protocol on Sui",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.mjs",
"require": "./dist/client/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.mjs",
"require": "./dist/types/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.mjs",
"require": "./dist/utils/index.js"
}
},
"files": [
"dist",
"docs",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"dev": "tsup --watch",
"test": "vitest --passWithNoTests",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:integration": "vitest tests/integration.test.ts",
"test:integration:simple": "vitest tests/integration-simple.test.ts",
"test:integration:sui": "vitest tests/integration-with-sui.test.ts",
"test:coin-deployment": "vitest tests/coin-deployment.test.ts",
"test:real-tx": "vitest tests/real-tx.test.ts",
"test:unit": "vitest tests/vault.test.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"prepublishOnly": "npm run type-check && npm run build"
},
"keywords": [
"sui",
"blockchain",
"defi",
"vault",
"typescript",
"sdk",
"web3"
],
"author": "Riva Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/riva-labs/vault-sdk"
},
"bugs": {
"url": "https://github.com/riva-labs/vault-sdk/issues"
},
"homepage": "https://rivalabs.io",
"documentation": "https://github.com/riva-labs/vault-sdk/tree/main/docs",
"peerDependencies": {
"@mysten/sui": "^1.28.2"
},
"devDependencies": {
"@mysten/sui": "^1.28.2",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.54.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitepress": "^1.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"@mysten/bcs": "^1.6.0",
"bignumber.js": "^9.1.2"
},
"engines": {
"node": ">=18.0.0"
}
}