-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.78 KB
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
{
"name": "@calindra/cartesify",
"version": "1.1.0",
"description": "Web3 Client to Send Input to dApp",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"watch": "parcel watch",
"build:parcel": "parcel build --dist-dir dist/",
"build": "run-s wagmi build:parcel",
"test": "jest --detectOpenHandles",
"test:ci": "jest --detectOpenHandles --forceExit $(pwd)/tests",
"wagmi": "wagmi generate",
"clean:parcel": "rimraf .parcel-cache",
"clean:build": "rimraf dist",
"clean:package": "rimraf calindra-cartesify-*.tgz",
"build:clean": "run-p clean:parcel clean:build clean:package",
"lint": "prettier --check ."
},
"author": "Calindra",
"license": "MIT",
"private": false,
"devDependencies": {
"@jest/globals": "^29.7.0",
"@parcel/packager-ts": "^2.10.3",
"@parcel/transformer-typescript-types": "^2.12.0",
"@sunodo/wagmi-plugin-hardhat-deploy": "^0.3.0",
"@types/debug": "^4.1.12",
"@types/node": "^22",
"@wagmi/cli": "^2.1.2",
"http-request-mock": "^1.8.17",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nock": "^13.5.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.10.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@cartesi/rollups": "^1.4.0",
"axios": "^1.6.7",
"debug": "^4.3.4",
"ethers": "^6.11.1",
"prettier": "^3.4.1",
"viem": "^2.21.12"
},
"directories": {
"test": "tests"
},
"volta": {
"node": "20.12.0"
},
"packageManager": "pnpm@9.14.4+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab"
}