-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "@agoric/rpc",
"description": "RPC Client Library for Agoric Dapps",
"license": "Apache-2.0",
"version": "0.9.0",
"type": "module",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"prepack": "tsc --build tsconfig.build.json",
"lint": "eslint . && tsc",
"lint:fix": "eslint . --fix",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@endo/marshal": "^0.8.9",
"axios": "^1.6.2",
"axios-retry": "^4.0.0",
"vite": "^4.3.2",
"vite-tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@endo/init": "^0.5.60",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitest/coverage-c8": "^0.25.3",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.22.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-require-extensions": "^0.1.3",
"happy-dom": "^9.20.3",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.2.5",
"typescript": "5.5.0-beta",
"vitest": "^1.6.0"
},
"eslintConfig": {
"extends": [
"plugin:require-extensions/recommended"
],
"plugins": [
"require-extensions"
]
}
}