-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2 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
62
63
64
65
66
{
"name": "@bitcann/core",
"version": "0.0.14",
"description": "BitCANN - Bitcoin Cash for Assigned Names and Numbers is a decentralized domain name and identity system built on the Bitcoin Cash Blockchain.",
"type": "module",
"exports": {
".": "./build/lib/index.js"
},
"types": "./build/lib/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf build",
"docs": "typedoc --hideGenerator --categorizeByGroup",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
"prepare": "npm run build",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"syntax": "tsc --noEmit",
"coverage": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --coverage"
},
"files": [
"build/lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BitCANN/bitcann-core.git"
},
"author": "Kuldeep Singh <kuldeepbb.grewal@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BitCANN/bitcann-core/issues"
},
"homepage": "https://github.com/BitCANN/bitcann-core#readme",
"keywords": [
"bitcoin cash",
"BCH",
"smart contracts"
],
"dependencies": {
"@bitauth/libauth": "^3.1.0-next.4",
"@bitcann/contracts": "^0.1.4",
"@electrum-cash/network": "^4.1.1",
"@electrum-cash/protocol": "^2.2.1-r8564577559",
"cashscript": "^0.11.5",
"chaingraph-ts": "^0.2.3",
"electrum-cash": "^3.2.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@jest/reporters": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typedoc": "^0.27.9",
"typedoc-plugin-coverage": "^3.4.1",
"typescript": "^5.5.3"
}
}