-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
{
"name": "@aastar/ethpaymaster_sdk_ts",
"version": "1.0.14",
"description": "EthPaymaster typescript Sdk",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/src/index.d.ts",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "rollup -w -c",
"lint": "eslint . --fix",
"prepublishOnly": "rimraf esm cjs dist && rollup -c",
"test": "jest",
"spellcheck": "cspell \"**\""
},
"jest": {
"testMatch": [
"**/__tests__/**/*.ts",
"**/?(*.)+(spec|test).ts"
]
},
"keywords": [],
"author": "AAStar",
"dependencies": {
"axios": "^1.6.8",
"viem": "^2.7.15"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@typescript-eslint/parser": "^5.22.0",
"babel-jest": "^29.7.0",
"cspell": "^5.20.0",
"fetch-mock": "^9.11.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"rollup": "^4.13.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
}
}