-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (76 loc) · 1.67 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
76
77
{
"version": "1.0.0",
"license": "MIT",
"main": "src/index.ts",
"typings": "src/index.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "history",
"author": "thanghoduc",
"module": "dist/history.esm.js",
"size-limit": [
{
"path": "dist/history.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/history.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.5",
"husky": "^9.1.5",
"size-limit": "^11.1.5",
"tsdx": "^0.14.1",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"rpc-websockets": "7.9.0"
},
"dependencies": {
"@solana/web3.js": "1.89.1",
"@types/lodash": "^4.17.7",
"@wallet/abi-decoder": "^3.1.3",
"@wallet/constants": "^3.1.3",
"@wallet/utils": "^3.1.3",
"lodash": "^4.17.21",
"tonapi-sdk-js": "^2.0.1",
"tonweb": "^0.0.66"
},
"resolutions": {
"@babel/core": "7.19.6",
"@babel/generator": "7.19.6",
"@babel/compat-data": "7.19.4",
"@babel/helper-compilation-targets": "7.19.3",
"@babel/helper-create-class-features-plugin": "7.19.0",
"@babel/helper-module-transforms": "7.19.6",
"babel-loader": "8.2.5",
"rpc-websockets": "7.9.0"
}
}