-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 843 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 843 Bytes
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
{
"name": "mwck",
"version": "0.1.2-dev",
"description": "mempool.space wallet connector kit",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"scripts": {
"tsc": "tsc",
"build": "npm run tsc && webpack --mode production",
"start": "node dist/index.js"
},
"license": "GNU Affero General Public License v3.0",
"devDependencies": {
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"cross-fetch": "^4.0.0",
"isomorphic-ws": "^5.0.0",
"ws": "^8.14.1"
}
}