-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.99 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
{
"name": "@rize/ts-template",
"version": "0.0.0",
"description": "TS template",
"type": "commonjs",
"repository": "",
"author": "",
"license": "MIT",
"files": [
"dist/**/*",
"src/**/*",
"tsconfig.json"
],
"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"
}
},
"devDependencies": {
"@anatine/esbuild-decorators": "^0.2.19",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.0.2",
"typescript": "^5.2.2",
"yalc": "^1.0.0-pre.53"
},
"scripts": {
"build": "tsup --format cjs,esm --dts --clean",
"test": "jest",
"demo:single-stream": "ts-node -r tsconfig-paths/register src/single.ts",
"demo:stream-group": "ts-node -r tsconfig-paths/register src/group.ts",
"demo:cancel-stream": "ts-node -r tsconfig-paths/register src/cancel.ts",
"demo:auto-claim": "ts-node -r tsconfig-paths/register src/auto-claim.ts",
"lint": "eslint . --ext .ts,.tsx",
"lint-fix": "eslint . --ext .ts,.tsx --fix",
"prerelease": "yarn build && chmod +x ./scripts/prerelease.sh && ./scripts/prerelease.sh"
},
"dependencies": {
"@msafe/mpay-sdk-sui": "^1.0.27",
"@mysten/sui.js": "^0.54.1",
"dotenv": "^16.4.5"
}
}