-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "@umi-ag/sui-sdk",
"version": "0.202405.1",
"files": [
"src",
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"source": "./src/index.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"description": "",
"scripts": {
"vite-node": "vite-node",
"build": "vite build",
"dev": "vite build --watch",
"bot": "vite-node examples/bot.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src --fix -c .eslintrc.cjs --ext js,ts,jsx,tsx --ignore-pattern='!.*'",
"pub": "vite build && npm publish --access public"
},
"keywords": [],
"dependencies": {
"@mysten/sui.js": "^0.39.0",
"cross-fetch": "^3.1.6",
"decimal.js": "^10.4.3",
"dotenv": "^16.0.3",
"just-zip-it": "^3.2.0",
"neverthrow": "^6.0.0",
"ts-pattern": "^4.3.0"
},
"devDependencies": {
"@types/node": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.8",
"rollup-plugin-node-polyfills": "^0.2.1",
"typescript": "^5.0.4",
"vite": "^4.3.8",
"vite-node": "^0.31.1",
"vite-plugin-dts": "^2.3.0",
"vite-tsconfig-paths": "^4.2.0"
}
}