-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.08 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
{
"name": "@omnibtc/dmens-sui-sdk",
"version": "0.0.7",
"description": "",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/main.mjs",
"require": "./dist/main.js"
}
},
"main": "dist/main.js",
"module": "dist/main.mjs",
"typings": "dist/main.d.ts",
"files": [
"src",
"dist"
],
"repository": "",
"author": "",
"license": "MIT",
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/main.ts",
"build-ts": "tsc -p tsconfig.json",
"build": "rm -rf dist; rollup -c rollup.config.js",
"build-cli": "rm -rf dist; rollup -c rollup.config.cli.js",
"cli": "yarn build-cli; node cli/index.js",
"codegen": "graphql-codegen --config codegen.ts"
},
"keywords": [],
"dependencies": {
"@apollo/client": "^3.7.1",
"@mysten/bcs": "^0.5.0",
"@mysten/sui.js": "^0.15.0",
"@types/dotenv": "^8.2.0",
"axios": "^1.1.3",
"clear": "^0.1.0",
"commander": "^9.3.0",
"decimal.js": "^10.4.2",
"dotenv": "^16.0.3",
"figlet": "^1.5.2",
"fs": "^0.0.1-security",
"graphql": "^16.6.0",
"typedoc": "^0.23.20",
"yaml": "^2.1.3"
},
"devDependencies": {
"@graphql-codegen/cli": "2.13.12",
"@graphql-codegen/typescript": "2.8.2",
"@graphql-codegen/typescript-operations": "^2.5.7",
"@graphql-codegen/typescript-react-apollo": "^3.3.6",
"@rollup/plugin-typescript": "^8.5.0",
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.5",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"prettier": "^2.6.2",
"rollup": "^2.79.0",
"ts-jest": "^28.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.2",
"@graphql-codegen/typescript-resolvers": "2.7.7",
"@graphql-codegen/introspection": "2.2.1"
}
}