-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.86 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.86 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
67
68
69
70
71
72
73
74
75
{
"name": "@hyperbitjs/chains",
"version": "2.0.2",
"description": "Blockchain network definitions for Bitcoin, Litecoin, Dogecoin, Ethereum, and 200+ other cryptocurrencies",
"keywords": [
"bitcoin",
"litecoin",
"dogecoin",
"ethereum",
"cryptocurrency",
"blockchain",
"network",
"bip122"
],
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "vite build",
"type-check": "tsc --noEmit",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix && prettier --write .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest --run",
"test:watch": "vitest",
"validate": "npm run type-check && npm run lint && npm run test",
"prepublishOnly": "npm run build && npm run validate"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "https://github.com/hyperbit-dev/chains.git"
},
"bugs": {
"url": "https://github.com/hyperbit-dev/chains/issues"
},
"homepage": "https://github.com/hyperbit-dev/chains/blob/master/README.md",
"author": "Hyperbit",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^8.56.0",
"prettier": "^3.3.3",
"typescript": "^5.3.3",
"vite": "^8.0.13",
"vite-plugin-dts": "^5.0.1",
"vitest": "^4.1.6"
}
}