-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 954 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
40
41
{
"name": "phoenix-server-js",
"version": "1.1.1",
"description": "A package to easily use Phoenix Server with JavaScript",
"repository": {
"type": "git",
"url": "https://github.com/MiguelMedeiros/phoenix-server-js.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start:dev": "nodemon",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"examples": "ts-node examples/index.ts"
},
"keywords": [
"Phoenix Wallet",
"Lightning Network",
"Bitcoin",
"Wallet"
],
"author": "Miguel Medeiros",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/qs": "^6.9.14",
"@types/ws": "^8.5.10",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"axios": "^1.6.8",
"ws": "^8.16.0"
}
}