forked from ngraveio/bc-ur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "@gandlaf21/bc-ur",
"version": "1.1.12",
"author": "gandlaf21 <[email protected]>",
"description": "A JS implementation of the Uniform Resources (UR) specification from Blockchain Commons",
"license": "MIT",
"main": "dist/lib/es5/index.js",
"module": "dist/lib/es6/index.js",
"directories": {
"lib": "src",
"test": "tests"
},
"files": [
"src",
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && yarn compile",
"compile": "tsc -p tsconfig.json && tsc -p tsconfig.esm.json",
"test": "vitest",
"prepublish": "yarn build",
"lint": "eslint \"./src/**/*.{ts,tsx}\" --max-warnings=0"
},
"dependencies": {
"@apocentre/alias-sampling": "^0.5.3",
"@noble/hashes": "^1.3.3",
"bignumber.js": "^9.0.1",
"buffer": "^6.0.3",
"cbor-sync": "^1.0.4",
"cborg": "^4.0.9",
"jsbi": "3.1.5"
},
"devDependencies": {
"typescript": "^4.1.5",
"vitest": "^1.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gandlafbtc/bc-ur.git"
},
"keywords": [
"bc-ur"
],
"bugs": {
"url": "https://github.com/gandlafbtc/bc-ur/issues"
},
"homepage": "https://github.com/gandlafbtc/bc-ur#readme"
}