-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "nano-wallet-js",
"version": "0.2.1",
"description": "SDK for developers to create and interact with Nanocurrency wallet easily",
"keywords": [
"nanocurrency",
"wallet",
"sdk",
"js"
],
"author": "anarkrypto <[email protected]>",
"homepage": "https://github.com/nanopay/nano-wallet-js/tree/main/#readme",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "jest",
"compile": "npm run compile:cjs && npm run compile:esm && npm run compile:types",
"compile:cjs": "tsc -b ./tsconfig.cjs.json && tsc-alias -p ./tsconfig.cjs.json",
"compile:esm": "tsc -b ./tsconfig.esm.json && tsc-alias -p ./tsconfig.esm.json",
"compile:types": "tsc -b ./tsconfig.types.json && tsc-alias -p ./tsconfig.types.json",
"build:clean": "rimraf ./dist",
"build": "npm run build:clean && npm run compile && node ./scripts/prepare-package-json",
"format": "prettier --config .prettierrc.json --write .",
"release": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nanopay/nano-wallet-js.git"
},
"bugs": {
"url": "https://github.com/nanopay/nano-wallet-js/issues"
},
"dependencies": {
"bignumber.js": "^9.1.1",
"nanocurrency": "^2.5.0"
},
"devDependencies": {
"@jest/types": "^29.6.1",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@types/qrcode-terminal": "^0.12.0",
"app-root-path": "^3.1.0",
"jest": "^29.5.0",
"jest-environment-node": "^29.6.1",
"prettier": "^2.8.8",
"qrcode-terminal": "^0.12.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"tsc-alias": "^1.8.7",
"typescript": "^5.1.6"
},
"files": [
"dist",
"src",
"!**/*.test.ts"
]
}