-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "checkpointing",
"version": "1.0.0",
"main": "./build/merkleClass.js",
"license": "MIT",
"scripts": {
"build": "rm -rf ./build && tsc -p tsconfig.json",
"ensure-build": "(node -e \"if (!require('fs').existsSync(__dirname + '/build')) {process.exit(1)}\" || yarn run build)",
"prepack": "yarn run ensure-build",
"prepare": "yarn run ensure-build",
"postinstall": "yarn run ensure-build"
},
"exports": {
"./*": {
"types": "./*.d.ts",
"default": "./*.js"
}
},
"dependencies": {
"@irys/arweave": "^0.0.2",
"@supercharge/promise-pool": "^3.1.0",
"base64url": "^3.0.1",
"bigint-buffer": "^1.1.5"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^3.1.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.9.2",
"tsc-esm-fix": "^2.20.12",
"tsconfig-paths": "^3.15.0",
"tslib": "^2.3.1",
"typescript": "=5.1.5"
}
}