-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
49 lines (49 loc) · 1.42 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": "tao-wallet",
"version": "2.5.0",
"description": "",
"scripts": {
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:fix": "npm run lint:eslint:fix && npm run lint:prettier:fix",
"lint:prettier": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:eslint": "esprint check",
"lint:eslint:fix": "esprint check --fix",
"build": "npm run build:clean && npm run build:src",
"build:clean": "rm -rf dist/*",
"build:src": "tsc --project tsconfig.build.json && mkdir -p dist/src/typed && cp src/typed/ln-markets-api.d.ts dist/src/typed/ln-markets-api.d.ts",
"prepublish": "npm run lint && npm run build",
"test": "jest"
},
"files": [
"dist/**"
],
"module": "dist/src/index.js",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@ln-markets/api": "^1.7.0",
"bech32": "^2.0.0",
"secp256k1": "^4.0.3"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.1",
"@types/jest": "^29.2.1",
"@types/node": "^18.11.3",
"@types/secp256k1": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.2",
"esprint": "^3.6.0",
"jest": "^29.2.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
}
}