-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 917 Bytes
/
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
{
"name": "@zerologin/lnurl",
"version": "0.1.2",
"description": "LNURL library written in TS",
"private": false,
"type": "module",
"scripts": {
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"build": "npm run clean && tsup src/index.ts --format esm,cjs",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"author": "zerologin",
"license": "MIT",
"dependencies": {
"bech32": "^2.0.0"
},
"devDependencies": {
"@types/node": "^17.0.35",
"@vitest/coverage-c8": "^0.22.1",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"tsup": "^5.12.8",
"typescript": "^4.6.4",
"vitest": "^0.22.1"
},
"repository": {
"url": "http://github.com/zerologin/lnurl",
"type": "git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
]
}