-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.43 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
{
"name": "qitmeerts",
"version": "1.1.2",
"description": "Qirmeer client-side TypeScript library",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"LICENSE",
"dist",
"src",
"test",
"README.md"
],
"workspaces": [
"src/*"
],
"scripts": {
"test": " npm run unit && cd src/eip4337 && npm run test",
"unit": "mocha --require ts-node/register ./test/qitmeer.core.ts",
"build": "tsc",
"build:clean": "yarn clean && yarn build",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Qitmeer/qitmeer.ts"
},
"keywords": [
"qitmeer.ts",
"qitmeer-lib",
"qitmeer",
"qitmeer-ts"
],
"author": "dindinw",
"license": "ISC",
"bugs": {
"url": "https://github.com/Qitmeer/qitmeer.ts/issues"
},
"homepage": "https://github.com/Qitmeer/qitmeer.ts#readme",
"devDependencies": {
"@types/assert": "^1.5.10",
"@types/mocha": "^10.0.7",
"@types/node": "^22.1.0",
"assert": "^2.1.0",
"mocha": "^10.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@noble/hashes": "^1.4.0",
"@types/base-x": "^3.0.6",
"base-x": "^5.0.0",
"bip66": "^2.0.0",
"bs58": "^6.0.0",
"merkle-lib": "^2.0.10",
"randombytes": "^2.1.0",
"rimraf": "^6.0.1",
"tiny-secp256k1": "^1.1.6",
"uint8array-tools": "^0.0.8",
"varuint-bitcoin": "^1.1.2"
}
}